gnutls_rc         387 lib/common/remote.c     ssize_t gnutls_rc;
gnutls_rc         396 lib/common/remote.c         gnutls_rc = gnutls_record_send(*session, unsent, unsent_len);
gnutls_rc         398 lib/common/remote.c         if (gnutls_rc == GNUTLS_E_INTERRUPTED || gnutls_rc == GNUTLS_E_AGAIN) {
gnutls_rc         402 lib/common/remote.c         } else if (gnutls_rc < 0) {
gnutls_rc         405 lib/common/remote.c                      gnutls_strerror((int) gnutls_rc),
gnutls_rc         406 lib/common/remote.c                      (long long) gnutls_rc);
gnutls_rc         409 lib/common/remote.c         } else if (gnutls_rc < unsent_len) {
gnutls_rc         411 lib/common/remote.c                       (long long) gnutls_rc, (unsigned long long) unsent_len);
gnutls_rc         412 lib/common/remote.c             unsent_len -= gnutls_rc;
gnutls_rc         413 lib/common/remote.c             unsent += gnutls_rc;
gnutls_rc         415 lib/common/remote.c             crm_trace("Sent all %lld bytes remaining", (long long) gnutls_rc);