| /netbsd-src/sys/fs/ntfs/ |
| H A D | ntfs_vfsops.c | 177 struct ntfsmount *ntmp = VFSTONTFS(mp); in ntfs_mount() local 178 if (ntmp == NULL) in ntfs_mount() 181 args->uid = ntmp->ntm_uid; in ntfs_mount() 182 args->gid = ntmp->ntm_gid; in ntfs_mount() 183 args->mode = ntmp->ntm_mode; in ntfs_mount() 184 args->flag = ntmp->ntm_flag; in ntfs_mount() 228 if (devvp != ntmp->um_devvp) { in ntfs_mount() 296 ntfs_superblock_validate(struct ntfsmount *ntmp) in ntfs_superblock_validate() argument 299 if (strncmp(ntmp->ntm_bootfile.bf_sysid, NTFS_BBID, NTFS_BBIDLEN)) { in ntfs_superblock_validate() 303 if (ntmp->ntm_bps == 0) { in ntfs_superblock_validate() [all …]
|
| H A D | ntfs_subr.c | 96 !ntfs_uastrcmp(ntmp, aalp->al_name,aalp->al_namelen,name,namelen) ) 111 ntfs_findvattr(struct ntfsmount *ntmp, struct ntnode *ip, struct ntvattr **lvapp, in ntfs_findvattr() argument 121 error = ntfs_loadntnode(ntmp,ip); in ntfs_findvattr() 157 ntfs_ntvattrget(struct ntfsmount *ntmp, struct ntnode *ip, u_int32_t type, in ntfs_ntvattrget() argument 182 error = ntfs_findvattr(ntmp, ip, &lvap, vapp, type, name, namelen, vcn); in ntfs_ntvattrget() 196 error = ntfs_readntvattr_plain(ntmp, ip, lvap, 0, len, alpool, &len, in ntfs_ntvattrget() 225 error = ntfs_ntlookup(ntmp, aalp->al_inumber, &newip); in ntfs_ntvattrget() 233 error = ntfs_findvattr(ntmp, newip, &lvap, vapp, in ntfs_ntvattrget() 258 ntfs_loadntnode(struct ntfsmount *ntmp, struct ntnode *ip) in ntfs_loadntnode() argument 268 mfrp = malloc(ntfs_bntob(ntmp->ntm_bpmftrec), M_TEMP, M_WAITOK); in ntfs_loadntnode() [all …]
|
| H A D | ntfs.h | 285 #define ntfs_cntobn(cn) (daddr_t)((cn) * (ntmp->ntm_spc)) 286 #define ntfs_cntob(cn) (off_t)((cn) * (ntmp)->ntm_spc * (ntmp)->ntm_bps) 287 #define ntfs_btocn(off) (cn_t)((off) / ((ntmp)->ntm_spc * (ntmp)->ntm_bps)) 288 #define ntfs_btocl(off) (cn_t)((off + ntfs_cntob(1) - 1) / ((ntmp)->ntm_spc * (ntmp)->ntm_bps)) 289 #define ntfs_btocnoff(off) (off_t)((off) % ((ntmp)->ntm_spc * (ntmp)->ntm_bps)) 290 #define ntfs_bntob(bn) (daddr_t)((bn) * (ntmp)->ntm_bps) 292 #define ntfs_bpbl (daddr_t)((ntmp)->ntm_bps)
|
| H A D | ntfs_vnops.c | 119 struct ntfsmount *ntmp = ip->i_mp; in ntfs_read() local 140 error = ntfs_readattr(ntmp, ip, fp->f_attrtype, in ntfs_read() 298 struct ntfsmount *ntmp = ip->i_mp; in ntfs_strategy() local 320 error = ntfs_readattr(ntmp, ip, fp->f_attrtype, in ntfs_strategy() 345 error = ntfs_writeattr_plain(ntmp, ip, fp->f_attrtype, in ntfs_strategy() 372 struct ntfsmount *ntmp = ip->i_mp; in ntfs_write() local 391 error = ntfs_writeattr_plain(ntmp, ip, fp->f_attrtype, in ntfs_write() 526 struct ntfsmount *ntmp = ip->i_mp; in ntfs_readdir() local 580 error = ntfs_ntreaddir(ntmp, fp, num, &iep); in ntfs_readdir() 590 if(!ntfs_isnamepermitted(ntmp,iep)) in ntfs_readdir() [all …]
|
| H A D | ntfs_compr.c | 97 ntfs_uncompunit(struct ntfsmount *ntmp, u_int8_t *uup, u_int8_t *cup) in ntfs_uncompunit() argument
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-asyncmeta/ |
| H A D | search.c | 79 ntmp, in asyncmeta_int_filter2bv() local 110 filter_escape_value_x( &vtmp, &ntmp, memctx ); in asyncmeta_int_filter2bv() 111 fstr->bv_len = f->f_av_desc->ad_cname.bv_len + ntmp.bv_len in asyncmeta_int_filter2bv() 116 f->f_av_desc->ad_cname.bv_val, ntmp.bv_len ? ntmp.bv_val : "" ); in asyncmeta_int_filter2bv() 118 ber_memfree_x( ntmp.bv_val, memctx ); in asyncmeta_int_filter2bv() 122 filter_escape_value_x( &f->f_av_value, &ntmp, memctx ); in asyncmeta_int_filter2bv() 123 fstr->bv_len = f->f_av_desc->ad_cname.bv_len + ntmp.bv_len in asyncmeta_int_filter2bv() 128 f->f_av_desc->ad_cname.bv_val, ntmp.bv_len ? ntmp.bv_val : "" ); in asyncmeta_int_filter2bv() 130 ber_memfree_x( ntmp.bv_val, memctx ); in asyncmeta_int_filter2bv() 134 filter_escape_value_x( &f->f_av_value, &ntmp, memctx ); in asyncmeta_int_filter2bv() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/x509/ |
| H A D | v3_info.c | 67 char objtmp[80], *ntmp; variable 82 ntmp = OPENSSL_malloc(nlen); 83 if (ntmp == NULL) 85 BIO_snprintf(ntmp, nlen, "%s - %s", objtmp, vtmp->name); 87 vtmp->name = ntmp;
|
| H A D | v3_crld.c | 431 X509_NAME ntmp; in print_distpoint() local 432 ntmp.entries = dpn->name.relativename; in print_distpoint() 434 X509_NAME_print_ex(out, &ntmp, 0, XN_FLAG_ONELINE); in print_distpoint()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/ |
| H A D | v3_info.c | 67 char objtmp[80], *ntmp; variable 82 ntmp = OPENSSL_malloc(nlen); 83 if (ntmp == NULL) 85 BIO_snprintf(ntmp, nlen, "%s - %s", objtmp, vtmp->name); 87 vtmp->name = ntmp;
|
| H A D | v3_utl.c | 316 char *ntmp, *vtmp; in STACK_OF() local 327 ntmp = NULL; in STACK_OF() 337 ntmp = strip_spaces(q); in STACK_OF() 338 if (!ntmp) { in STACK_OF() 346 ntmp = strip_spaces(q); in STACK_OF() 348 if (!ntmp) { in STACK_OF() 353 X509V3_add_value(ntmp, NULL, &values); in STACK_OF() 367 X509V3_add_value(ntmp, vtmp, &values); in STACK_OF() 368 ntmp = NULL; in STACK_OF() 382 X509V3_add_value(ntmp, vtmp, &values); in STACK_OF() [all …]
|
| H A D | v3_crld.c | 426 X509_NAME ntmp; in print_distpoint() local 427 ntmp.entries = dpn->name.relativename; in print_distpoint() 429 X509_NAME_print_ex(out, &ntmp, 0, XN_FLAG_ONELINE); in print_distpoint()
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/overlays/ |
| H A D | valsort.c | 220 struct berval tmp, ntmp, *vals = NULL, *nvals; in do_sort() local 236 ntmp = nvals[i]; in do_sort() 249 nvals[j] = ntmp; in do_sort() 255 ntmp = nvals[i]; in do_sort() 259 int cmp = strcmp( nvals[j-1].bv_val, ntmp.bv_val ); in do_sort() 267 nvals[j] = ntmp; in do_sort() 359 struct berval tmp = a->a_vals[i], ntmp; in valsort_response() local 360 if ( gotnvals ) ntmp = a->a_nvals[i]; in valsort_response() 370 if ( gotnvals ) a->a_nvals[j] = ntmp; in valsort_response()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/asn1/ |
| H A D | asn_mime.c | 639 char *ntmp; in STACK_OF() local 654 ntmp = NULL; in STACK_OF() 669 ntmp = strip_ends(q); in STACK_OF() 678 new_hdr = mime_hdr_new(ntmp, strip_ends(q)); in STACK_OF() 685 ntmp = NULL; in STACK_OF() 704 ntmp = strip_ends(q); in STACK_OF() 713 mime_hdr_addparam(mhdr, ntmp, strip_ends(q)); in STACK_OF() 714 ntmp = NULL; in STACK_OF() 735 new_hdr = mime_hdr_new(ntmp, strip_ends(q)); in STACK_OF() 743 mime_hdr_addparam(mhdr, ntmp, strip_ends(q)); in STACK_OF()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/asn1/ |
| H A D | asn_mime.c | 684 char *ntmp; in STACK_OF() local 699 ntmp = NULL; in STACK_OF() 714 ntmp = strip_ends(q); in STACK_OF() 723 new_hdr = mime_hdr_new(ntmp, strip_ends(q)); in STACK_OF() 730 ntmp = NULL; in STACK_OF() 749 ntmp = strip_ends(q); in STACK_OF() 758 mime_hdr_addparam(mhdr, ntmp, strip_ends(q)); in STACK_OF() 759 ntmp = NULL; in STACK_OF() 780 new_hdr = mime_hdr_new(ntmp, strip_ends(q)); in STACK_OF() 788 mime_hdr_addparam(mhdr, ntmp, strip_ends(q)); in STACK_OF()
|
| /netbsd-src/external/mpl/dhcp/bind/dist/lib/irs/ |
| H A D | getaddrinfo.c | 449 char ntmp[NI_MAXHOST]; in getaddrinfo() local 455 ntmp[0] = '\0'; in getaddrinfo() 458 strlcpy(ntmp, hostname, sizeof(ntmp)); in getaddrinfo() 459 p = strchr(ntmp, '%'); in getaddrinfo() 464 ntmp[0] = '\0'; in getaddrinfo() 483 } else if (ntmp[0] != '\0' && in getaddrinfo() 484 inet_pton(AF_INET6, ntmp, abuf) == 1) in getaddrinfo()
|
| /netbsd-src/external/bsd/openldap/dist/servers/slapd/ |
| H A D | value.c | 353 struct berval ntmp; in ordered_value_sort() local 390 if ( gotnvals ) ntmp = a->a_nvals[i]; in ordered_value_sort() 400 if ( gotnvals ) a->a_nvals[j] = ntmp; in ordered_value_sort()
|