Lines Matching refs:rc
79 EVP_PKEY *rc;
86 rc = PEM_read_bio_PrivateKey(bioS, key, cb, s);
89 if (rc == NULL) {
99 rc = d2i_PrivateKey_bio(bioS, NULL);
102 if (rc == NULL) {
106 rc = d2i_PrivateKey_bio(bioS, NULL);
110 if (rc != NULL && key != NULL) {
113 *key = rc;
115 return rc;
127 int rc;
137 rc = 0;
140 rc = SSL_shutdown(ssl);
141 if (rc >= 0 && flush && (SSL_get_shutdown(ssl) & SSL_SENT_SHUTDOWN)) {
146 rc = -1;
151 if (rc != 0)
154 return rc;