Home
last modified time | relevance | path

Searched refs:child2 (Results 1 – 3 of 3) sorted by relevance

/dragonfly/crypto/libressl/ssl/
H A Dbs_cbs.c590 CBS child, child2; in CBS_get_optional_asn1_bool() local
599 if (!CBS_get_asn1(&child, &child2, CBS_ASN1_BOOLEAN) || in CBS_get_optional_asn1_bool()
600 CBS_len(&child2) != 1 || CBS_len(&child) != 0) in CBS_get_optional_asn1_bool()
603 boolean = CBS_data(&child2)[0]; in CBS_get_optional_asn1_bool()
/dragonfly/crypto/libressl/crypto/bytestring/
H A Dbs_cbs.c590 CBS child, child2; in CBS_get_optional_asn1_bool() local
599 if (!CBS_get_asn1(&child, &child2, CBS_ASN1_BOOLEAN) || in CBS_get_optional_asn1_bool()
600 CBS_len(&child2) != 1 || CBS_len(&child) != 0) in CBS_get_optional_asn1_bool()
603 boolean = CBS_data(&child2)[0]; in CBS_get_optional_asn1_bool()
/dragonfly/sys/kern/
H A Dsubr_bus.c2895 device_t child, child2; in bus_generic_suspend() local
2900 for (child2 = TAILQ_FIRST(&dev->children); in bus_generic_suspend()
2901 child2 && child2 != child; in bus_generic_suspend()
2902 child2 = TAILQ_NEXT(child2, link)) in bus_generic_suspend()
2903 DEVICE_RESUME(child2); in bus_generic_suspend()