HomeSort by: relevance | last modified time | path
    Searched defs:ntmp (Results 1 - 15 of 15) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/x509/
v3_crld.c 427 X509_NAME ntmp; local
428 ntmp.entries = dpn->name.relativename;
430 X509_NAME_print_ex(out, &ntmp, 0, XN_FLAG_ONELINE);
v3_utl.c 318 char *ntmp, *vtmp; local
328 ntmp = NULL;
338 ntmp = strip_spaces(q);
339 if (!ntmp) {
346 ntmp = strip_spaces(q);
348 if (!ntmp) {
352 if (!X509V3_add_value(ntmp, NULL, &values)) {
367 if (!X509V3_add_value(ntmp, vtmp, &values)) {
370 ntmp = NULL;
382 if (!X509V3_add_value(ntmp, vtmp, &values))
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/x509/
v3_crld.c 431 X509_NAME ntmp; local
432 ntmp.entries = dpn->name.relativename;
434 X509_NAME_print_ex(out, &ntmp, 0, XN_FLAG_ONELINE);
v3_utl.c 316 char *ntmp, *vtmp; local
328 ntmp = NULL;
338 ntmp = strip_spaces(q);
339 if (!ntmp) {
346 ntmp = strip_spaces(q);
348 if (!ntmp) {
352 if (!X509V3_add_value(ntmp, NULL, &values)) {
367 if (!X509V3_add_value(ntmp, vtmp, &values)) {
370 ntmp = NULL;
383 if (!X509V3_add_value(ntmp, vtmp, &values))
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/
v3_crld.c 426 X509_NAME ntmp; local
427 ntmp.entries = dpn->name.relativename;
429 X509_NAME_print_ex(out, &ntmp, 0, XN_FLAG_ONELINE);
v3_utl.c 316 char *ntmp, *vtmp; local
327 ntmp = NULL;
337 ntmp = strip_spaces(q);
338 if (!ntmp) {
346 ntmp = strip_spaces(q);
348 if (!ntmp) {
353 X509V3_add_value(ntmp, NULL, &values);
367 X509V3_add_value(ntmp, vtmp, &values);
368 ntmp = NULL;
382 X509V3_add_value(ntmp, vtmp, &values)
    [all...]
  /src/sys/fs/ntfs/
ntfs_vfsops.c 177 struct ntfsmount *ntmp = VFSTONTFS(mp); local
178 if (ntmp == NULL)
181 args->uid = ntmp->ntm_uid;
182 args->gid = ntmp->ntm_gid;
183 args->mode = ntmp->ntm_mode;
184 args->flag = ntmp->ntm_flag;
228 if (devvp != ntmp->um_devvp) {
296 ntfs_superblock_validate(struct ntfsmount *ntmp)
299 if (strncmp(ntmp->ntm_bootfile.bf_sysid, NTFS_BBID, NTFS_BBIDLEN)) {
303 if (ntmp->ntm_bps == 0)
321 struct ntfsmount *ntmp; local
509 struct ntfsmount *ntmp; local
623 struct ntfsmount *ntmp = VFSTONTFS(mp); local
712 struct ntfsmount *ntmp; local
    [all...]
ntfs_vnops.c 119 struct ntfsmount *ntmp = ip->i_mp; local
140 error = ntfs_readattr(ntmp, ip, fp->f_attrtype,
298 struct ntfsmount *ntmp = ip->i_mp; local
320 error = ntfs_readattr(ntmp, ip, fp->f_attrtype,
345 error = ntfs_writeattr_plain(ntmp, ip, fp->f_attrtype,
372 struct ntfsmount *ntmp = ip->i_mp; local
391 error = ntfs_writeattr_plain(ntmp, ip, fp->f_attrtype,
526 struct ntfsmount *ntmp = ip->i_mp; local
580 error = ntfs_ntreaddir(ntmp, fp, num, &iep);
590 if(!ntfs_isnamepermitted(ntmp,iep)
664 struct ntfsmount *ntmp = dip->i_mp; local
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/back-asyncmeta/
search.c 80 ntmp, local
111 filter_escape_value_x( &vtmp, &ntmp, memctx );
112 fstr->bv_len = f->f_av_desc->ad_cname.bv_len + ntmp.bv_len
117 f->f_av_desc->ad_cname.bv_val, ntmp.bv_len ? ntmp.bv_val : "" );
119 ber_memfree_x( ntmp.bv_val, memctx );
123 filter_escape_value_x( &f->f_av_value, &ntmp, memctx );
124 fstr->bv_len = f->f_av_desc->ad_cname.bv_len + ntmp.bv_len
129 f->f_av_desc->ad_cname.bv_val, ntmp.bv_len ? ntmp.bv_val : "" )
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/overlays/
valsort.c 224 struct berval tmp, ntmp, *vals = NULL, *nvals; local
240 ntmp = nvals[i];
253 nvals[j] = ntmp;
259 ntmp = nvals[i];
263 int cmp = strcmp( nvals[j-1].bv_val, ntmp.bv_val );
271 nvals[j] = ntmp;
363 struct berval tmp = a->a_vals[i], ntmp; local
364 if ( gotnvals ) ntmp = a->a_nvals[i];
374 if ( gotnvals ) a->a_nvals[j] = ntmp;
  /src/external/bsd/openldap/dist/servers/slapd/
value.c 353 struct berval ntmp; local
390 if ( gotnvals ) ntmp = a->a_nvals[i];
400 if ( gotnvals ) a->a_nvals[j] = ntmp;
  /src/crypto/external/bsd/openssl/dist/crypto/asn1/
asn_mime.c 686 char *ntmp; local
701 ntmp = NULL;
716 ntmp = strip_ends(q);
725 new_hdr = mime_hdr_new(ntmp, strip_ends(q));
732 ntmp = NULL;
751 ntmp = strip_ends(q);
760 mime_hdr_addparam(mhdr, ntmp, strip_ends(q));
761 ntmp = NULL;
782 new_hdr = mime_hdr_new(ntmp, strip_ends(q));
790 mime_hdr_addparam(mhdr, ntmp, strip_ends(q))
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/
asn_mime.c 639 char *ntmp; local
654 ntmp = NULL;
669 ntmp = strip_ends(q);
678 new_hdr = mime_hdr_new(ntmp, strip_ends(q));
685 ntmp = NULL;
704 ntmp = strip_ends(q);
713 mime_hdr_addparam(mhdr, ntmp, strip_ends(q));
714 ntmp = NULL;
735 new_hdr = mime_hdr_new(ntmp, strip_ends(q));
743 mime_hdr_addparam(mhdr, ntmp, strip_ends(q))
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/asn1/
asn_mime.c 697 char *ntmp; local
712 ntmp = NULL;
727 ntmp = strip_ends(q);
736 new_hdr = mime_hdr_new(ntmp, strip_ends(q));
743 ntmp = NULL;
762 ntmp = strip_ends(q);
771 mime_hdr_addparam(mhdr, ntmp, strip_ends(q));
772 ntmp = NULL;
793 new_hdr = mime_hdr_new(ntmp, strip_ends(q));
801 mime_hdr_addparam(mhdr, ntmp, strip_ends(q))
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/irs/
getaddrinfo.c 449 char ntmp[NI_MAXHOST]; local
455 ntmp[0] = '\0';
458 strlcpy(ntmp, hostname, sizeof(ntmp));
459 p = strchr(ntmp, '%');
464 ntmp[0] = '\0';
483 } else if (ntmp[0] != '\0' &&
484 inet_pton(AF_INET6, ntmp, abuf) == 1)

Completed in 62 milliseconds