Lines Matching defs:resp
1039 BIO *resp;
1049 resp = OSSL_HTTP_REQ_CTX_exchange(rctx);
1050 if (resp == NULL) {
1090 if (resp != NULL && !BIO_up_ref(resp))
1091 resp = NULL;
1092 return resp;
1126 BIO *resp = NULL;
1155 resp = OSSL_HTTP_exchange(rctx, &redirection_url);
1159 if (resp == NULL && redirection_url != NULL) {
1172 BIO_free(resp);
1189 if (!OSSL_HTTP_close(rctx, resp != NULL)) {
1190 BIO_free(resp);
1192 resp = NULL;
1197 return resp;
1213 BIO *resp = NULL;
1225 resp = OSSL_HTTP_exchange(rctx, NULL);
1226 if (resp == NULL || !OSSL_HTTP_is_alive(rctx)) {
1227 if (!OSSL_HTTP_close(rctx, resp != NULL)) {
1228 BIO_free(resp);
1229 resp = NULL;
1236 return resp;