| /mirbsd/src/sbin/pfctl/ |
| D | pfctl_osfp.c | 274 struct name_entry *nm; in pfctl_flush_my_fingerprints() local 276 while ((nm = LIST_FIRST(list)) != NULL) { in pfctl_flush_my_fingerprints() 277 LIST_REMOVE(nm, nm_entry); in pfctl_flush_my_fingerprints() 278 pfctl_flush_my_fingerprints(&nm->nm_sublist); in pfctl_flush_my_fingerprints() 280 free(nm); in pfctl_flush_my_fingerprints() 329 struct name_entry *nm, *class_nm, *version_nm, *subtype_nm; in pfctl_get_fingerprint() local 340 if ((nm = lookup_name_list(&classes, name))) { in pfctl_get_fingerprint() 341 class = nm->nm_num; in pfctl_get_fingerprint() 451 struct name_entry *nm; in pfctl_lookup_fingerprint() local 474 LIST_FOREACH(nm, &classes, nm_entry) { in pfctl_lookup_fingerprint() [all …]
|
| /mirbsd/src/bin/pax/ |
| D | file_subs.c | 440 char *nm = arcn->name; in node_creat() local 460 while (lstat(nm, &sb) == 0 && in node_creat() 469 len = readlink(nm, target, in node_creat() 474 nm, arcn->name); in node_creat() 479 nm = target; in node_creat() 482 res = mkdir(nm, file_mode); in node_creat() 490 res = mknod(nm, file_mode, arcn->sb.st_rdev); in node_creat() 494 res = mknod(nm, file_mode, arcn->sb.st_rdev); in node_creat() 497 res = mkfifo(nm, file_mode); in node_creat() 505 nm); in node_creat() [all …]
|
| /mirbsd/src/lib/libssl/src/crypto/pem/ |
| D | pem_pkey.c | 72 char *nm=NULL; in PEM_read_bio_PrivateKey() local 77 if (!PEM_bytes_read_bio(&data, &len, &nm, PEM_STRING_EVP_PKEY, bp, cb, u)) in PEM_read_bio_PrivateKey() 81 if (strcmp(nm,PEM_STRING_RSA) == 0) in PEM_read_bio_PrivateKey() 83 else if (strcmp(nm,PEM_STRING_DSA) == 0) in PEM_read_bio_PrivateKey() 85 else if (strcmp(nm,PEM_STRING_PKCS8INF) == 0) { in PEM_read_bio_PrivateKey() 95 } else if (strcmp(nm,PEM_STRING_PKCS8) == 0) { in PEM_read_bio_PrivateKey() 124 OPENSSL_free(nm); in PEM_read_bio_PrivateKey()
|
| D | pem_lib.c | 77 static int check_pem(const char *nm, const char *name); 179 static int check_pem(const char *nm, const char *name) in check_pem() argument 182 if (!strcmp(nm,name)) return 1; in check_pem() 186 if(!strcmp(nm,PEM_STRING_PKCS8) && in check_pem() 189 if(!strcmp(nm,PEM_STRING_PKCS8INF) && in check_pem() 192 if(!strcmp(nm,PEM_STRING_RSA) && in check_pem() 195 if(!strcmp(nm,PEM_STRING_DSA) && in check_pem() 200 if(!strcmp(nm,PEM_STRING_X509_OLD) && in check_pem() 203 if(!strcmp(nm,PEM_STRING_X509_REQ_OLD) && in check_pem() 207 if(!strcmp(nm,PEM_STRING_X509) && in check_pem() [all …]
|
| /mirbsd/src/sys/miscfs/procfs/ |
| D | procfs_ctl.c | 271 const vfs_namemap_t *nm; local 294 nm = vfs_findname(ctlnames, msg, xlen); 295 if (nm) { 296 error = procfs_control(curp, p, nm->nm_val); 300 nm = vfs_findname(signames, msg, xlen); 301 if (nm) { 303 p->p_xstat = nm->nm_val; 309 psignal(p, nm->nm_val);
|
| D | procfs_subr.c | 303 vfs_findname(nm, buf, buflen) in vfs_findname() argument 304 const vfs_namemap_t *nm; in vfs_findname() 309 for (; nm->nm_name; nm++) 310 if (bcmp(buf, nm->nm_name, buflen + 1) == 0) 311 return (nm);
|
| /mirbsd/src/gnu/usr.bin/binutils/binutils/ |
| D | sanity.sh | 17 for i in size objdump nm ar strip ranlib ; do 22 for i in size objdump nm ar strip ranlib ; do 27 for i in size objdump nm ar strip ranlib ; do 28 ${BIN}/nm ${BIN}/$i > /dev/null 37 for i in size objdump nm ar ranlib ; do
|
| /mirbsd/src/usr.sbin/quot/ |
| D | quot.c | 548 char dev[MNAMELEN], *nm, *mountpoint, *cp; in main() local 592 if ((nm = strrchr(mp->f_mntfromname, '/'))) { in main() 594 _PATH_DEV, nm + 1); in main() 595 nm = dev; in main() 597 nm = mp->f_mntfromname; in main() 598 quot(nm, mp->f_mntonname); in main() 604 nm = *argv; in main() 607 cp = nm + strlen(nm); in main() 608 while (*(--cp) == '/' && cp != nm) in main() 621 strcmp(nm, mp[i].f_mntonname) == 0) { in main() [all …]
|
| /mirbsd/src/lib/libc/gen/ |
| D | disklabel.c | 156 char **nm; in gettype() local 158 for (nm = names; *nm; nm++) in gettype() 159 if (strcasecmp(t, *nm) == 0) in gettype() 160 return (nm - names); in gettype()
|
| /mirbsd/src/gnu/usr.bin/perl/hints/ |
| D | beos.sh | 4 if [ ! -f beos/nm ]; then mwcc -w all -o beos/nm beos/nm.c 2>/dev/null; fi
|
| D | qnx.sh | 192 Creating a quick-and-dirty nm cover for Configure to use: 195 cat >./UU/nm <<-'EOF' 211 chmod +x ./UU/nm
|
| /mirbsd/src/lib/libssl/src/crypto/asn1/ |
| D | x_name.c | 174 union { X509_NAME *x; ASN1_VALUE *a; } nm = {NULL}; in x509_name_ex_d2i() local 188 if(!x509_name_ex_new(&nm.a, NULL)) goto err; in x509_name_ex_d2i() 190 if(!BUF_MEM_grow(nm.x->bytes, p - q)) goto err; in x509_name_ex_d2i() 191 memcpy(nm.x->bytes->data, q, p - q); in x509_name_ex_d2i() 199 if(!sk_X509_NAME_ENTRY_push(nm.x->entries, entry)) in x509_name_ex_d2i() 205 ret = x509_name_canon(nm.x); in x509_name_ex_d2i() 208 nm.x->modified = 0; in x509_name_ex_d2i() 209 *val = nm.a; in x509_name_ex_d2i()
|
| D | tasn_prn.c | 171 char *s, *nm; in asn1_primitive_print() local 173 if(utype == V_ASN1_INTEGER) nm = "INTEGER"; in asn1_primitive_print() 174 else nm = "ENUMERATED"; in asn1_primitive_print() 175 BIO_printf(out, "%*s%s:%s", indent, "", nm, s); in asn1_primitive_print()
|
| D | a_strex.c | 509 int X509_NAME_print_ex(BIO *out, X509_NAME *nm, int indent, unsigned long flags) in X509_NAME_print_ex() argument 512 return X509_NAME_print(out, nm, indent); in X509_NAME_print_ex() 513 return do_name_ex(send_bio_chars, out, nm, indent, flags); in X509_NAME_print_ex() 517 int X509_NAME_print_ex_fp(FILE *fp, X509_NAME *nm, int indent, unsigned long flags) in X509_NAME_print_ex_fp() argument 525 ret = X509_NAME_print(btmp, nm, indent); in X509_NAME_print_ex_fp() 529 return do_name_ex(send_fp_chars, fp, nm, indent, flags); in X509_NAME_print_ex_fp()
|
| /mirbsd/src/lib/libcitrus_iconv/libc/citrus/modules/ |
| D | citrus_euc.c | 301 wchar_t m, nm; in _citrus_EUC_wcrtomb_priv() local 309 nm = wc & ~m; in _citrus_EUC_wcrtomb_priv() 339 *s++ = ((nm >> (i << 3)) & 0xff) | m; in _citrus_EUC_wcrtomb_priv() 355 wchar_t m, nm; in _citrus_EUC_stdenc_wctocs() local 360 nm = wc & ~m; in _citrus_EUC_stdenc_wctocs() 363 *idx = (_citrus_index_t)nm; in _citrus_EUC_stdenc_wctocs()
|
| /mirbsd/src/lib/libssl/src/crypto/ocsp/ |
| D | ocsp_vfy.c | 70 static int ocsp_req_find_signer(X509 **psigner, OCSP_REQUEST *req, X509_NAME *nm, STACK_OF(X509) *c… 360 X509_NAME *nm; in OCSP_request_verify() local 375 nm = gen->d.directoryName; in OCSP_request_verify() 376 ret = ocsp_req_find_signer(&signer, req, nm, certs, store, flags); in OCSP_request_verify() 426 static int ocsp_req_find_signer(X509 **psigner, OCSP_REQUEST *req, X509_NAME *nm, STACK_OF(X509) *c… in ocsp_req_find_signer() argument 432 signer = X509_find_by_subject(req->optionalSignature->certs, nm); in ocsp_req_find_signer() 437 signer = X509_find_by_subject(certs, nm); in ocsp_req_find_signer()
|
| /mirbsd/src/gnu/usr.bin/binutils/binutils/doc/ |
| D | Makefile.am | 26 nm.1 \ 78 nm.1: $(binutils_TEXI) 80 -$(TEXI2POD) $(MANCONF) -Dnm < $(binutils_TEXI) > nm.pod 81 -($(POD2MAN) nm.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \ 83 rm -f nm.pod
|
| /mirbsd/src/lib/libssl/src/doc/crypto/ |
| D | X509_NAME_add_entry_by_txt.pod | 78 X509_NAME *nm; 79 nm = X509_NAME_new(); 80 if (nm == NULL) 82 if (!X509_NAME_add_entry_by_txt(nm, MBSTRING_ASC, 85 if (!X509_NAME_add_entry_by_txt(nm, MBSTRING_ASC, 88 if (!X509_NAME_add_entry_by_txt(nm, MBSTRING_ASC,
|
| D | X509_NAME_get_index_by_NID.pod | 67 for (i = 0; i < X509_NAME_entry_count(nm); i++) 69 e = X509_NAME_get_entry(nm, i); 81 lastpos = X509_NAME_get_index_by_NID(nm, NID_commonName, lastpos); 84 e = X509_NAME_get_entry(nm, lastpos);
|
| /mirbsd/src/lib/libssl/src/crypto/x509v3/ |
| D | v3_alt.c | 340 X509_NAME *nm; in copy_email() local 351 if(ctx->subject_cert) nm = X509_get_subject_name(ctx->subject_cert); in copy_email() 352 else nm = X509_REQ_get_subject_name(ctx->subject_req); in copy_email() 356 while((i = X509_NAME_get_index_by_NID(nm, in copy_email() 358 ne = X509_NAME_get_entry(nm, i); in copy_email() 362 X509_NAME_delete_entry(nm, i); in copy_email()
|
| /mirbsd/src/gnu/usr.bin/perl/ext/B/t/ |
| D | concise.t | 308 @nm = sort keys %combos; 311 isnt ($combos{$nm[$i]}, $combos{$nm[$j]}, 312 "results for $nm[$i] and $nm[$j] are different, as expected");
|
| /mirbsd/src/usr.sbin/config/ |
| D | mkmakefile.c | 390 const char *nm, *swname; in emitload() local 402 nm = cf->cf_name; in emitload() 405 if (fprintf(fp, "%s: ${SYSTEM_DEP} swap%s.o", nm, swname) < 0) in emitload() 421 if (fprintf(fp, "swap%s.c\n", nm) < 0) in emitload()
|
| /mirbsd/src/gnu/usr.bin/binutils/gdb/config/i386/ |
| D | i386v42mp.mh | 3 # we don't want nm-i386v4.h since that defines LOSING_POLL which isn't 5 NAT_FILE= nm-i386v42mp.h
|
| /mirbsd/src/lib/libssl/src/crypto/bn/ |
| D | bn_div.c | 70 int i,nm,nd; 98 nm=BN_num_bits(m); 108 if (!BN_lshift(D,D,nm-nd)) goto end; 109 for (i=nm-nd; i>=0; i--)
|
| /mirbsd/src/gnu/usr.bin/cvs/lib/ |
| D | regex.c | 27 # define regexec(pr, st, nm, pm, ef) __regexec (pr, st, nm, pm, ef) argument
|