Symbol: ossl_isspace
crypto/openssl/crypto/asn1/asn_mime.c
706
if (mhdr && ossl_isspace(linebuf[0]))
crypto/openssl/crypto/asn1/asn_mime.c
837
if (!ossl_isspace(c))
crypto/openssl/crypto/asn1/asn_mime.c
858
if (ossl_isspace(c))
crypto/openssl/crypto/asn1/asn_moid.c
79
while (ossl_isspace(*ostr))
crypto/openssl/crypto/asn1/asn_moid.c
81
while (ossl_isspace(*ln))
crypto/openssl/crypto/asn1/asn_moid.c
84
while (ossl_isspace(*p)) {
crypto/openssl/crypto/http/http_client.c
1554
if (ossl_isspace(*mbufp))
crypto/openssl/crypto/http/http_client.c
1557
while (read_len > 0 && ossl_isspace(mbuf[read_len - 1]))
crypto/openssl/crypto/http/http_client.c
444
for (code = line; *code != '\0' && !ossl_isspace(*code); code++)
crypto/openssl/crypto/http/http_client.c
450
while (*code != '\0' && ossl_isspace(*code))
crypto/openssl/crypto/http/http_client.c
456
for (reason = code; *reason != '\0' && !ossl_isspace(*reason); reason++)
crypto/openssl/crypto/http/http_client.c
471
while (*reason != '\0' && ossl_isspace(*reason))
crypto/openssl/crypto/http/http_client.c
481
for (end = reason + strlen(reason) - 1; ossl_isspace(*end); end--)
crypto/openssl/crypto/http/http_client.c
781
while (ossl_isspace(*value))
crypto/openssl/crypto/http/http_lib.c
286
&& ((found != no_proxy && !ossl_isspace(found[-1]) && found[-1] != ',')
crypto/openssl/crypto/http/http_lib.c
287
|| (found[sl] != '\0' && !ossl_isspace(found[sl]) && found[sl] != ',')))
crypto/openssl/crypto/objects/obj_dat.c
746
while (ossl_isspace(*s))
crypto/openssl/crypto/objects/obj_dat.c
752
while (*l != '\0' && !ossl_isspace(*l))
crypto/openssl/crypto/objects/obj_dat.c
756
while (ossl_isspace(*l))
crypto/openssl/crypto/property/property_parse.c
115
if (!ossl_isspace(*s) && *s != '\0' && *s != ',') {
crypto/openssl/crypto/property/property_parse.c
152
if (!ossl_isspace(*s) && *s != '\0' && *s != ',') {
crypto/openssl/crypto/property/property_parse.c
182
if (!ossl_isspace(*s) && *s != '\0' && *s != ',') {
crypto/openssl/crypto/property/property_parse.c
234
while (ossl_isprint(*s) && !ossl_isspace(*s) && *s != ',') {
crypto/openssl/crypto/property/property_parse.c
241
if (!ossl_isspace(*s) && *s != '\0' && *s != ',') {
crypto/openssl/crypto/property/property_parse.c
27
while (ossl_isspace(*s))
crypto/openssl/crypto/s390xcap.c
509
if (!ossl_isspace(*tok_begin))
crypto/openssl/crypto/x509/v3_conf.c
209
while (ossl_isspace(*p))
crypto/openssl/crypto/x509/v3_conf.c
228
while (ossl_isspace(*p))
crypto/openssl/crypto/x509/v3_utl.c
411
while (*p && ossl_isspace(*p))
crypto/openssl/crypto/x509/v3_utl.c
416
while ((q != p) && ossl_isspace(*q))
crypto/openssl/crypto/x509/x509_acert.c
257
while (ossl_isspace(*p))
crypto/openssl/crypto/x509/x_name.c
423
while (len > 0 && ossl_isspace(*from)) {
crypto/openssl/crypto/x509/x_name.c
431
while (len > 0 && ossl_isspace(to[-1])) {
crypto/openssl/crypto/x509/x_name.c
446
else if (ossl_isspace(*from)) {
crypto/openssl/crypto/x509/x_name.c
457
} while (ossl_isspace(*from));
crypto/openssl/test/ctype_internal_test.c
47
&& TEST_int_eq(isspace(n) != 0, ossl_isspace(n) != 0)