gnutls_rc         154 include/crm/common/tls_internal.h                                int *gnutls_rc);
gnutls_rc         167 include/crm/common/tls_internal.h int pcmk__tls_client_try_handshake(pcmk__remote_t *remote, int *gnutls_rc);
gnutls_rc         134 lib/common/remote.c     ssize_t gnutls_rc;
gnutls_rc         143 lib/common/remote.c         gnutls_rc = gnutls_record_send(session, unsent, unsent_len);
gnutls_rc         145 lib/common/remote.c         if (gnutls_rc == GNUTLS_E_INTERRUPTED || gnutls_rc == GNUTLS_E_AGAIN) {
gnutls_rc         149 lib/common/remote.c         } else if (gnutls_rc < 0) {
gnutls_rc         152 lib/common/remote.c                      gnutls_strerror((int) gnutls_rc),
gnutls_rc         153 lib/common/remote.c                      (long long) gnutls_rc);
gnutls_rc         156 lib/common/remote.c         } else if (gnutls_rc < unsent_len) {
gnutls_rc         158 lib/common/remote.c                       (long long) gnutls_rc, (unsigned long long) unsent_len);
gnutls_rc         159 lib/common/remote.c             unsent_len -= gnutls_rc;
gnutls_rc         160 lib/common/remote.c             unsent += gnutls_rc;
gnutls_rc         162 lib/common/remote.c             crm_trace("Sent all %lld bytes remaining", (long long) gnutls_rc);
gnutls_rc         480 lib/common/tls.c pcmk__tls_client_try_handshake(pcmk__remote_t *remote, int *gnutls_rc)
gnutls_rc         484 lib/common/tls.c     if (gnutls_rc != NULL) {
gnutls_rc         485 lib/common/tls.c         *gnutls_rc = GNUTLS_E_SUCCESS;
gnutls_rc         501 lib/common/tls.c             if (gnutls_rc != NULL) {
gnutls_rc         502 lib/common/tls.c                 *gnutls_rc = rc;
gnutls_rc         514 lib/common/tls.c                            int *gnutls_rc)
gnutls_rc         519 lib/common/tls.c         int rc = pcmk__tls_client_try_handshake(remote, gnutls_rc);