Lines Matching defs:buf
1001 const char *l, *buf;
1043 buf = l;
1091 * use strcmp(), because buf is not '\0' terminated.)
1096 if (strncmp(buf, ca_list[j]->name, buflen) == 0
1216 if ((buflen == 8) && strncmp(buf, "STRENGTH", 8) == 0) {
1218 } else if (buflen == 10 && strncmp(buf, "SECLEVEL=", 9) == 0) {
1219 int level = buf[9] - '0';
1690 char *SSL_CIPHER_description(const SSL_CIPHER *cipher, char *buf, int len)
1697 if (buf == NULL) {
1699 if ((buf = OPENSSL_malloc(len)) == NULL) {
1894 BIO_snprintf(buf, len, format, cipher->name, ver, kx, au, enc, mac);
1896 return buf;