| /freebsd/crypto/openssl/crypto/engine/ |
| H A D | eng_table.c | 88 ENGINE_PILE tmplate, *fnd; in engine_table_register() local 104 fnd = lh_ENGINE_PILE_retrieve(&(*table)->piles, &tmplate); in engine_table_register() 105 if (!fnd) { in engine_table_register() 106 fnd = OPENSSL_malloc(sizeof(*fnd)); in engine_table_register() 107 if (fnd == NULL) in engine_table_register() 109 fnd->uptodate = 1; in engine_table_register() 110 fnd->nid = *nids; in engine_table_register() 111 fnd->sk = sk_ENGINE_new_null(); in engine_table_register() 112 if (!fnd->sk) { in engine_table_register() 113 OPENSSL_free(fnd); in engine_table_register() [all …]
|
| /freebsd/contrib/less/ |
| H A D | lglob.h | 51 #define DECL_GLOB_NAME(fnd,drive,dir,fname,ext,handle) \ argument 52 struct find_t fnd; \ 66 #define DECL_GLOB_NAME(fnd,drive,dir,fname,ext,handle) \ argument 67 struct _finddata_t fnd; \ 82 #define DECL_GLOB_NAME(fnd,drive,dir,fname,ext,handle) \ argument 83 struct ffblk fnd; \
|
| H A D | filename.c | 662 DECL_GLOB_NAME(fnd,drive,dir,fname,ext,handle) in lglob() 664 GLOB_FIRST_NAME(filename, &fnd, handle); in lglob() 675 n = strlen(drive) + strlen(dir) + strlen(fnd.GLOB_NAME) + 1; in lglob() 677 SNPRINTF3(pfilename, n, "%s%s%s", drive, dir, fnd.GLOB_NAME); in lglob() 702 } while (GLOB_NEXT_NAME(handle, &fnd) == 0); in lglob()
|
| /freebsd/usr.sbin/rpcbind/ |
| H A D | rpcb_svc_com.c | 151 rpcblist_ptr rbl, fnd; in map_set() local 159 fnd = find_service(reg.r_prog, reg.r_vers, reg.r_netid); in map_set() 160 if (fnd && (fnd->rpcb_map.r_vers == reg.r_vers)) { in map_set() 161 if (!strcmp(fnd->rpcb_map.r_addr, reg.r_addr)) in map_set() 193 for (fnd = list_rbl; fnd->rpcb_next; in map_set() 194 fnd = fnd->rpcb_next) in map_set() 196 fnd->rpcb_next = rbl; in map_set() 312 rpcblist_ptr fnd; in rpcbproc_getaddr_com() local 318 fnd = find_service(regp->r_prog, regp->r_vers, transp->xp_netid); in rpcbproc_getaddr_com() 319 if (fnd && ((verstype == RPCB_ALLVERS) || in rpcbproc_getaddr_com() [all …]
|
| H A D | pmap_svc.c | 261 struct pmaplist *fnd; in pmapproc_getport() local 286 fnd = find_service_pmap(reg.pm_prog, reg.pm_vers, reg.pm_prot); in pmapproc_getport() 287 if (fnd) { in pmapproc_getport() 304 p1 = (fnd->pml_map.pm_port >> 8) & 0xff; in pmapproc_getport() 305 p2 = (fnd->pml_map.pm_port) & 0xff; in pmapproc_getport() 309 port = fnd->pml_map.pm_port; in pmapproc_getport()
|
| /freebsd/usr.sbin/pnfsdscopymr/ |
| H A D | pnfsdscopymr.c | 79 int ch, fnd, fndzero, i, migrateit, mirrorcnt, mirrorit, ret; in main() local 249 fnd = 0; in main() 250 for (i = 0; i < mirrorcnt && fnd == 0; i++) { in main() 264 fnd = 1; in main() 274 fnd = 1; in main() 287 if (fnd == 0) in main()
|
| /freebsd/sys/kern/ |
| H A D | subr_filter.c | 138 int i, j, fnd; in check_update_times() local 145 fnd = 0; in check_update_times() 150 fnd = 1; in check_update_times() 154 if (fnd == 0) { in check_update_times() 173 int i, j, fnd; in check_update_times_small() local 180 fnd = 0; in check_update_times_small() 185 fnd = 1; in check_update_times_small() 189 if (fnd == 0) { in check_update_times_small()
|
| /freebsd/crypto/openssl/crypto/asn1/ |
| H A D | a_strnid.c | 130 ASN1_STRING_TABLE fnd; in ASN1_STRING_TABLE_get() local 137 fnd.nid = nid; in ASN1_STRING_TABLE_get() 141 idx = sk_ASN1_STRING_TABLE_find(stable, &fnd); in ASN1_STRING_TABLE_get() 145 return OBJ_bsearch_table(&fnd, tbl_standard, OSSL_NELEM(tbl_standard)); in ASN1_STRING_TABLE_get()
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_add/ |
| H A D | zpool_add.kshlib | 87 typeset fnd="Dump device" 88 dumpdev=`dumpadm | grep "$fnd" | cut -f2 -d : | \
|
| /freebsd/sys/netinet6/ |
| H A D | sctp6_usrreq.c | 915 int fnd; in sctp6_getaddr() local 923 fnd = 0; in sctp6_getaddr() 932 fnd = 1; in sctp6_getaddr() 936 if ((!fnd) || (sin_a6 == NULL)) { in sctp6_getaddr() 954 int fnd = 0; in sctp6_getaddr() local 962 fnd = 1; in sctp6_getaddr() 966 if (!fnd) { in sctp6_getaddr() 985 int fnd; in sctp6_peeraddr() local 1014 fnd = 0; in sctp6_peeraddr() 1018 fnd = 1; in sctp6_peeraddr() [all …]
|
| /freebsd/usr.sbin/pmcstudy/ |
| H A D | eval_expr.c | 397 int i, idx, fnd; in pmc_name_set() local 409 for(i=0, fnd=0; i<valid_pmc_cnt; i++) { in pmc_name_set() 411 fnd = 1; in pmc_name_set() 415 if (!fnd) { in pmc_name_set()
|
| /freebsd/usr.bin/ctags/ |
| H A D | C.c | 283 goto fnd; in func_entry() 291 fnd: in func_entry()
|
| /freebsd/sys/netinet/ |
| H A D | sctp_pcb.c | 1494 int fnd; in sctp_endpoint_probe() local 1570 fnd = 0; in sctp_endpoint_probe() 1572 fnd = 1; in sctp_endpoint_probe() 1575 if (!fnd) in sctp_endpoint_probe() 1624 fnd = 0; in sctp_endpoint_probe() 1626 fnd = 1; in sctp_endpoint_probe() 1628 if (!fnd) { in sctp_endpoint_probe() 1679 int fnd; in sctp_isport_inuse() local 1688 fnd = 0; in sctp_isport_inuse() 1690 fnd = 1; in sctp_isport_inuse() [all …]
|
| H A D | tcp_log_buf.c | 2866 int i, fnd; in tcp_log_sendfile() local 2903 fnd = 0; in tcp_log_sendfile() 2927 fnd = 1; in tcp_log_sendfile() 2929 if (fnd) { in tcp_log_sendfile() 2958 if (!fnd) { in tcp_log_sendfile()
|
| H A D | sctp_usrreq.c | 7389 int fnd; local 7395 fnd = 0; 7405 fnd = 1; 7409 if ((!fnd) || (sin_a == NULL)) { 7434 int fnd = 0; local 7442 fnd = 1; 7446 if (!fnd) { 7461 int fnd; local 7489 fnd = 0; 7493 fnd = 1; [all …]
|
| H A D | sctp_output.c | 5296 bool fnd, check_src; in sctp_are_there_new_addresses() local 5331 fnd = false; in sctp_are_there_new_addresses() 5342 fnd = true; in sctp_are_there_new_addresses() 5354 fnd = true; in sctp_are_there_new_addresses() 5361 if (!fnd) { in sctp_are_there_new_addresses() 5441 fnd = false; in sctp_are_there_new_addresses() 5452 fnd = true; in sctp_are_there_new_addresses() 5462 fnd = true; in sctp_are_there_new_addresses() 5468 if (!fnd) { in sctp_are_there_new_addresses()
|
| /freebsd/usr.sbin/mountd/ |
| H A D | mountd.c | 2408 int fnd, fndarray[(n)], i, j; \ 2418 fnd = 0; \ 2422 fnd = 1; \ 2425 if (fnd == 0) \ 3786 int fnd = 0; in del_mlist() local 3791 fnd = 1; in del_mlist() 3796 if (fnd) { in del_mlist()
|
| /freebsd/sys/fs/nfsclient/ |
| H A D | nfs_clstate.c | 1293 int ret = 0, fnd; in nfscl_relbytelock() local 1348 fnd = 0; in nfscl_relbytelock() 1357 fnd = 1; in nfscl_relbytelock() 1362 if (fnd) in nfscl_relbytelock()
|
| /freebsd/sys/fs/nfsserver/ |
| H A D | nfs_nfsdport.c | 5375 int error, fhiszero, fnd, gotone, i, mirrorcnt; in nfsrv_dsgetsockmnt() local 5401 fnd = 0; in nfsrv_dsgetsockmnt() 5407 fnd = 1; in nfsrv_dsgetsockmnt() 5411 if (fnd == 0) in nfsrv_dsgetsockmnt()
|
| H A D | nfs_nfsdserv.c | 5232 int error = 0, fnd, kind, layouttype, iomode, maxcnt, reclaim; in nfsrvd_layoutreturn() local 5290 offset, len, reclaim, kind, &stateid, maxcnt, layp, &fnd, in nfsrvd_layoutreturn() 5293 fnd); in nfsrvd_layoutreturn() 5296 if (fnd != 0) { in nfsrvd_layoutreturn()
|
| /freebsd/sys/netinet/tcp_stacks/ |
| H A D | bbr.c | 8013 int fnd = 0; in bbr_collapsed_window() local 8024 fnd = 1; in bbr_collapsed_window() 8029 if (!fnd) { in bbr_collapsed_window() 8094 fnd = 0; in bbr_collapsed_window() 8097 fnd++; in bbr_collapsed_window() 8100 bbr_log_type_rwnd_collapse(bbr, max_seq, 4, fnd); in bbr_collapsed_window()
|