gnutls_rc         374 lib/common/remote.c     ssize_t gnutls_rc;
gnutls_rc         383 lib/common/remote.c         gnutls_rc = gnutls_record_send(*session, unsent, unsent_len);
gnutls_rc         385 lib/common/remote.c         if (gnutls_rc == GNUTLS_E_INTERRUPTED || gnutls_rc == GNUTLS_E_AGAIN) {
gnutls_rc         389 lib/common/remote.c         } else if (gnutls_rc < 0) {
gnutls_rc         392 lib/common/remote.c                      gnutls_strerror((int) gnutls_rc),
gnutls_rc         393 lib/common/remote.c                      (long long) gnutls_rc);
gnutls_rc         396 lib/common/remote.c         } else if (gnutls_rc < unsent_len) {
gnutls_rc         398 lib/common/remote.c                       (long long) gnutls_rc, (unsigned long long) unsent_len);
gnutls_rc         399 lib/common/remote.c             unsent_len -= gnutls_rc;
gnutls_rc         400 lib/common/remote.c             unsent += gnutls_rc;
gnutls_rc         402 lib/common/remote.c             crm_trace("Sent all %lld bytes remaining", (long long) gnutls_rc);