Home
last modified time | relevance | path

Searched refs:spn (Results 1 – 7 of 7) sorted by relevance

/freebsd/sbin/ddb/
H A Dddb.c70 size_t spn; in ddb_readfile() local
72 spn = strlen(buf); in ddb_readfile()
73 if (buf[spn-1] == '\n') in ddb_readfile()
74 buf[spn-1] = '\0'; in ddb_readfile()
76 spn = strspn(buf, WHITESP); in ddb_readfile()
77 argv[0] = buf + spn; in ddb_readfile()
82 spn = strcspn(argv[0], WHITESP); in ddb_readfile()
83 argv[1] = argv[0] + spn + strspn(argv[0] + spn, WHITESP); in ddb_readfile()
84 argv[0][spn] = '\0'; in ddb_readfile()
/freebsd/crypto/heimdal/kdc/
H A Dkrb5tgs.c1492 char *spn = NULL, *cpn = NULL, *tpn = NULL, *dpn = NULL; in tgs_build_reply() local
1575 ret = verify_flags(context, config, &adtkt, spn); in tgs_build_reply()
1584 ret = krb5_unparse_name(context, sp, &spn); in tgs_build_reply()
1597 cpn, from, spn, opt_str); in tgs_build_reply()
1600 "TGS-REQ %s from %s for %s", cpn, from, spn); in tgs_build_reply()
1626 free(spn); in tgs_build_reply()
1629 ret = krb5_unparse_name(context, sp, &spn); in tgs_build_reply()
1644 realms[0], spn); in tgs_build_reply()
1646 free(spn); in tgs_build_reply()
1649 ret = krb5_unparse_name(context, sp, &spn); in tgs_build_reply()
[all …]
/freebsd/contrib/mandoc/
H A Dtbl_term.c608 const struct tbl_span *sp, const struct tbl_span *spn, int flags) in tbl_hrule()
624 cpn = spn == NULL ? NULL : spn->layout->first; in tbl_hrule()
626 if (spn != NULL) { in tbl_hrule()
627 if (spn->pos == TBL_SPAN_DATA) in tbl_hrule()
628 dpn = spn->first; in tbl_hrule()
629 else if (spn->next != NULL) in tbl_hrule()
630 dpn = spn->next->first; in tbl_hrule()
646 (spn == NULL ? 0 : BDOWN * bw) + in tbl_hrule()
698 } else if (spn ! in tbl_hrule()
571 tbl_hrule(struct termp * tp,const struct tbl_span * spp,const struct tbl_span * sp,const struct tbl_span * spn,int flags) tbl_hrule() argument
[all...]
/freebsd/crypto/heimdal/kcm/
H A Dcache.c153 char *cpn = NULL, *spn = NULL; in kcm_debug_ccache() local
170 krb5_unparse_name(context, p->server, &spn); in kcm_debug_ccache()
176 (spn == NULL) ? "<none>" : spn, in kcm_debug_ccache()
181 if (spn != NULL) in kcm_debug_ccache()
182 free(spn); in kcm_debug_ccache()
/freebsd/contrib/libxo/libxo/
H A Dlibxo.c4222 ssize_t spn = xo_strnspn(fmt, flen, "0123456789.*+ -"); in xo_format_is_numeric() local
4223 if (spn >= flen) in xo_format_is_numeric()
4226 fmt += spn; /* Move along the input string */ in xo_format_is_numeric()
4227 flen -= spn; in xo_format_is_numeric()
4230 spn = xo_strnspn(fmt, flen, "hljtqz"); in xo_format_is_numeric()
4231 if (spn >= flen) in xo_format_is_numeric()
4234 fmt += spn; /* Move along the input string */ in xo_format_is_numeric()
4235 flen -= spn; in xo_format_is_numeric()
/freebsd/crypto/heimdal/lib/kadm5/
H A DChangeLog593 * ad.c: try handle spn's better
/freebsd/crypto/heimdal/
H A DChangeLog.2006797 * appl/gssmask/gssmask.c: Don't announce spn if there is none.