Home
last modified time | relevance | path

Searched refs:bitstr (Results 1 – 5 of 5) sorted by relevance

/titanic_44/usr/src/cmd/sendmail/src/
H A Dtls.c1176 char bitstr[16]; local
1185 (void) sm_snprintf(bitstr, sizeof(bitstr), "%d", b);
1186 macdefine(mac, A_TEMP, macid("{cipher_bits}"), bitstr);
1187 (void) sm_snprintf(bitstr, sizeof(bitstr), "%d", r);
1188 macdefine(mac, A_TEMP, macid("{alg_bits}"), bitstr);
/titanic_44/usr/src/cmd/picl/plugins/sun4v/snmp/
H A Dsnmpplugin.c1408 uchar_t *bitstr = NULL; in add_thresholds() local
1415 row, (char **)&bitstr, snmp_syserr_p); in add_thresholds()
1421 nbytes = strlen((const char *)bitstr); in add_thresholds()
1435 if (ret < 0 || bitstr == NULL || nbytes == 0 || 2 < nbytes) { in add_thresholds()
1436 if (bitstr) in add_thresholds()
1437 free(bitstr); in add_thresholds()
1449 enabled = bitstr[0]; in add_thresholds()
1451 enabled = bitstr[1]; in add_thresholds()
1453 if (bitstr) { in add_thresholds()
1454 free(bitstr); in add_thresholds()
/titanic_44/usr/src/cmd/mdb/common/modules/rdc/
H A Drdc.c62 char bitstr[33] = { '0' }; variable
1268 bitstr[32] = '\0'; in print_bit()
1272 bitstr[i] = '1'; in print_bit()
1274 bitstr[i] = '0'; in print_bit()
1278 return (bitstr); in print_bit()
/titanic_44/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_ldap.c1334 unsigned long bitstr = 0; in decpdu() local
1336 bitstr = \ in decpdu()
1337 ((bitstr) << 8) + ((i < klen)?hexstr[i]:0); in decpdu()
1341 if ((bitstr & \ in decpdu()
/titanic_44/usr/src/lib/libkmf/ber_der/common/
H A Dclasn1.c393 char *bitstr = NULL; in get_spki() local
402 if (kmfber_scanf(asn1, "B}", &bitstr, &size) == BER_BIT_STRING) { in get_spki()
403 spki->subjectPublicKey.Data = (uchar_t *)bitstr; in get_spki()
411 if (bitstr != NULL) in get_spki()
412 free(bitstr); in get_spki()