Lines Matching refs:tmpval
1289 char *p, *tmpval;
1291 if (!TEST_ptr(tmpval = OPENSSL_strdup(value)))
1293 p = strchr(tmpval, ':');
1296 rv = EVP_PKEY_CTX_ctrl_str(pctx, tmpval, p);
1304 OPENSSL_free(tmpval);
1498 char *tmpkey, *tmpval;
1505 tmpval = strchr(tmpkey, ':');
1506 if (tmpval != NULL)
1507 *tmpval++ = '\0';
1509 if (tmpval == NULL
1512 tmpkey, tmpval,
1513 strlen(tmpval), NULL)) {
1521 size_val = (size_t)strtoul(tmpval, NULL, 0);
1766 char *p, *tmpval;
1768 if (!TEST_ptr(tmpval = OPENSSL_strdup(value)))
1770 p = strchr(tmpval, ':');
1773 rv = EVP_PKEY_CTX_ctrl_str(pctx, tmpval, p);
1788 OPENSSL_free(tmpval);