Searched refs:fn (Results 276 - 300 of 582) sorted by relevance

<<11121314151617181920>>

/freebsd-current/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmpimport.c187 char *fn; local
191 fn = savestr(fname);
193 fn = xalloc(strlen(path) + strlen(fname) + 2);
194 sprintf(fn, "%s/%s", path, fname);
196 fp = fopen(fn, "r");
197 free(fn);
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp86 void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf, argument
88 Fn = &fn;
112 calculateWinCXXEHStateNumbers(&fn, EHInfo);
114 calculateSEHStateNumbers(&fn, EHInfo);
116 calculateClrEHStateNumbers(&fn, EHInfo);
319 calculateWasmEHInfo(&fn, EHInfo);
/freebsd-current/sbin/mdconfig/
H A Dmdconfig.c467 md_set_file(const char *fn) argument
472 if (realpath(fn, mdio.md_file) == NULL)
473 err(1, "could not find full path for %s", fn);
476 err(1, "could not open %s", fn);
478 err(1, "could not stat %s", fn);
480 errx(1, "%s is not a regular file", fn);
/freebsd-current/contrib/ofed/infiniband-diags/src/
H A Dibccquery.c368 op_fn_t *fn; local
404 if (!(fn = match_op(match_tbl, argv[0])))
422 if ((err = fn(&portid, argv + 2, argc - 2)))
H A Dsmpquery.c439 op_fn_t *fn; local
478 if (!(fn = match_op(match_tbl, argv[0])))
493 if ((err = fn(&portid, argv + 2, argc - 2)))
503 if ((err = fn(&portid, argv + 3, argc - 3)))
/freebsd-current/tools/tools/net80211/w00t/libw00t/
H A Dw00t.c68 short seqfn(unsigned short seq, unsigned short fn) argument
72 assert(fn < 16);
74 r = fn;
/freebsd-current/crypto/openssl/crypto/asn1/
H A Da_strex.c429 ASN1_OBJECT *fn; local
509 fn = X509_NAME_ENTRY_get_object(ent);
511 fn_nid = OBJ_obj2nid(fn);
515 OBJ_obj2txt(objtmp, sizeof(objtmp), fn, 1);
/freebsd-current/crypto/openssl/crypto/evp/
H A Dasymcipher.c510 void (*fn)(EVP_ASYM_CIPHER *cipher,
515 (void (*)(void *, void *))fn, arg,
523 void (*fn)(const char *name, void *data),
527 return evp_names_do_all(cipher->prov, cipher->name_id, fn, data);
H A Dexchange.c558 void (*fn)(EVP_KEYEXCH *keyexch, void *arg),
562 (void (*)(void *, void *))fn, arg,
569 void (*fn)(const char *name, void *data),
573 return evp_names_do_all(keyexch->prov, keyexch->name_id, fn, data);
H A Dkem.c443 void (*fn)(EVP_KEM *kem, void *arg),
446 evp_generic_do_all(libctx, OSSL_OP_KEM, (void (*)(void *, void *))fn, arg,
453 void (*fn)(const char *name, void *data),
457 return evp_names_do_all(kem->prov, kem->name_id, fn, data);
H A Dkeymgmt_meth.c287 void (*fn)(EVP_KEYMGMT *keymgmt, void *arg),
291 (void (*)(void *, void *))fn, arg,
298 void (*fn)(const char *name, void *data),
302 return evp_names_do_all(keymgmt->prov, keymgmt->name_id, fn, data);
/freebsd-current/lib/libusb/
H A Dlibusb10.h87 libusb_hotplug_callback_fn fn; member in struct:libusb_hotplug_callback_handle_struct
/freebsd-current/sbin/devd/
H A Ddevd.hh170 void parse_one_file(const char *fn);
/freebsd-current/usr.bin/sort/
H A Dbwstring.h87 void bws_disorder_warnx(struct bwstring *s, const char *fn, size_t pos);
/freebsd-current/usr.sbin/ppp/
H A Dfsm.h139 const struct fsm_callbacks *fn; member in struct:fsm
/freebsd-current/sys/contrib/dev/mediatek/mt76/
H A Dutil.c136 w->fn(w);
/freebsd-current/sys/dev/xen/grant_table/
H A Dgrant_table.c101 callback->fn(callback->arg);
382 void (*fn)(void *), void *arg, uint16_t count)
388 callback->fn = fn;
/freebsd-current/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Ddwarf.c1202 fndef_t *fn; local
1230 fn = xcalloc(sizeof (fndef_t));
1235 fn->fn_ret = die_lookup_pass1(dw, die, DW_AT_type);
1237 fn->fn_ret = tdesc_intr_void(dw);
1243 for (fn->fn_nargs = 0, arg = die_child(dw, die); arg != NULL;
1246 fn->fn_nargs++;
1248 fn->fn_nargs > 0)
1249 fn->fn_vargs = 1;
1252 if (fn->fn_nargs != 0) {
1253 debug(3, "die %llu: adding %d argument%s\n", off, fn
[all...]
/freebsd-current/sbin/nvmecontrol/
H A Ddevlist.c69 .fn = devlist,
H A Dselftest.c126 .fn = selftest,
/freebsd-current/contrib/sendmail/src/
H A Dbf.c69 # define OPEN(fn, omode, cmode, sff) open(fn, omode, cmode)
71 # define OPEN(fn, omode, cmode, sff) safeopen(fn, omode, cmode, sff)
/freebsd-current/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilFuchsia.cpp457 explicit RunOnDestruction(Fn fn) : fn_(fn) {} argument
465 RunOnDestruction<Fn> at_scope_exit(Fn fn) { argument
466 return RunOnDestruction<Fn>(fn);
/freebsd-current/include/
H A Dstdio.h413 #define fropen(cookie, fn) funopen(cookie, fn, 0, 0, 0)
414 #define fwopen(cookie, fn) funopen(cookie, 0, fn, 0, 0)
/freebsd-current/crypto/openssl/include/openssl/
H A Devp.h541 void (*fn)(const char *name, void *data),
586 void (*fn)(const char *name, void *data),
1176 void EVP_CIPHER_do_all(void (*fn) (const EVP_CIPHER *ciph,
1179 void EVP_CIPHER_do_all_sorted(void (*fn)
1183 void (*fn)(EVP_CIPHER *cipher, void *arg),
1186 void EVP_MD_do_all(void (*fn) (const EVP_MD *ciph,
1189 void EVP_MD_do_all_sorted(void (*fn)
1193 void (*fn)(EVP_MD *md, void *arg),
1235 void (*fn)(EVP_MAC *mac, void *arg),
1238 void (*fn)(cons
[all...]
/freebsd-current/stand/efi/loader/
H A Dmain.c866 char *fn, *freeme = NULL; local
869 fn = def_fn;
871 freeme = fn = malloc(len + 1);
872 if (fn != NULL) {
873 if (efi_freebsd_getenv(name, fn, &len) != EFI_SUCCESS) {
874 free(fn);
875 fn = NULL;
891 fn[len] = '\0';
899 if (fn) {
900 printf(" Reading loader env vars from %s\n", fn);
[all...]

Completed in 338 milliseconds

<<11121314151617181920>>