Home
last modified time | relevance | path

Searched refs:noquote (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/telnet/telnet/
H A Dutilities.c761 int noquote = 2; in printsub() local
773 fprintf(NetTrace, "\" (VALUE) " + noquote); in printsub()
776 fprintf(NetTrace, "\" VAR " + noquote); in printsub()
779 fprintf(NetTrace, "%s", "\" VALUE " + noquote); in printsub()
780 noquote = 2; in printsub()
789 fprintf(NetTrace, "\" (VAR) " + noquote); in printsub()
792 fprintf(NetTrace, "\" VALUE " + noquote); in printsub()
795 fprintf(NetTrace, "%s", "\" VAR " + noquote); in printsub()
796 noquote = 2; in printsub()
800 fprintf(NetTrace, "%s", "\" ESC " + noquote); in printsub()
[all …]
/freebsd/crypto/heimdal/lib/krb5/
H A Dtest_princ.c46 const char *noquote; in test_princ() local
239 noquote = "test principal@SU.SE"; in test_princ()
258 if (strcmp(noquote, princ_unparsed)) in test_princ()
259 krb5_errx(context, 1, "nq '%s' != '%s'", noquote, princ_unparsed); in test_princ()
/freebsd/crypto/krb5/src/lib/krb5/krb/
H A Dt_princ.c72 const char *noquote; in test_princ() local
264 noquote = "test/principal@SU.SE"; in test_princ()
283 if (strcmp(noquote, princ_unparsed)) in test_princ()
284 err(context, 0, "nq '%s' != '%s'", noquote, princ_unparsed); in test_princ()
/freebsd/crypto/openssl/ssl/quic/
H A Djson_enc.c536 static void json_u64(OSSL_JSON_ENC *json, uint64_t v, int noquote) in json_u64() argument
539 int quote = !noquote && in_ijson(json) && v > (uint64_t)(POW_53 - 1); in json_u64()