Lines Matching defs:tmpval
1277 char *p, *tmpval;
1279 if (!TEST_ptr(tmpval = OPENSSL_strdup(value)))
1281 p = strchr(tmpval, ':');
1284 rv = EVP_PKEY_CTX_ctrl_str(pctx, tmpval, p);
1292 OPENSSL_free(tmpval);
1485 char *tmpkey, *tmpval;
1492 tmpval = strchr(tmpkey, ':');
1493 if (tmpval != NULL)
1494 *tmpval++ = '\0';
1496 if (tmpval == NULL
1499 tmpkey, tmpval,
1500 strlen(tmpval), NULL)) {
1730 char *p, *tmpval;
1732 if (!TEST_ptr(tmpval = OPENSSL_strdup(value)))
1734 p = strchr(tmpval, ':');
1737 rv = EVP_PKEY_CTX_ctrl_str(pctx, tmpval, p);
1752 OPENSSL_free(tmpval);