Lines Matching defs:res
787 * Sends the PKIMessage req and on success place the response in *res
796 OSSL_CMP_MSG *res = NULL;
824 res = read_PKIMESSAGE("actually using", &opt_rspin);
831 res = OSSL_CMP_CTX_server_perform(ctx, actual_req);
840 res = OSSL_CMP_MSG_http_perform(ctx, actual_req);
847 if (res == NULL)
855 hdr = OSSL_CMP_MSG_get0_header(res);
860 OSSL_CMP_MSG_free(res);
861 res = NULL;
866 if (opt_rspout != NULL && !write_PKIMESSAGE(res, &opt_rspout)) {
867 OSSL_CMP_MSG_free(res);
868 res = NULL;
873 return res;
1043 int res;
1048 res = OSSL_CMP_CTX_set1_secretValue(ctx, (unsigned char *)pass_str,
1051 if (res == 0)
1337 int res = 1;
1343 if (res != 0)
1344 res = SSL_CTX_add_extra_chain_cert(ssl_ctx, cert);
1345 if (res == 0)
1349 if (res == 0) {
1418 int res;
1422 res = OSSL_CMP_CTX_set1_secretValue(ctx,
1426 if (res == 0)
2145 char *res = NULL;
2149 if ((res = NCONF_get_string(src_conf, opt_item, name)) != NULL)
2150 return res;
2152 return res;
2161 long res;
2166 res = strtol(str, &tailptr, 10);
2167 if (res == LONG_MIN || res == LONG_MAX || *tailptr != '\0')
2170 *result = res;