Searched refs:rrecv (Results 1 - 6 of 6) sorted by last modified time

/freebsd-11-stable/contrib/ofed/librdmacm/
H A Drsocket.h56 ssize_t rrecv(int socket, void *buf, size_t len, int flags);
H A Drsocket.c2012 * Although we serialize rsend and rrecv calls with respect to themselves,
2014 * We need to serialize access to the CQ, but rsend and rrecv need to
2018 * which could be stalled until the remote process calls rrecv. This should
2019 * not block rrecv from receiving data from the remote side however.
2415 ssize_t rrecv(int socket, void *buf, size_t len, int flags) function
2498 ret = rrecv(socket, buf, len, flags);
2511 return rrecv(socket, iov[0].iov_base, iov[0].iov_len, flags);
2524 return rrecv(socket, buf, count, 0);
H A Dpreload.c418 rs.recv = dlsym(RTLD_DEFAULT, "rrecv");
791 rrecv(fd, buf, len, flags) : real.recv(fd, buf, len, flags);
/freebsd-11-stable/contrib/ofed/librdmacm/examples/
H A Driostream.c221 ret = rrecv(rs, buf + offset, size - offset, flags);
225 perror("rrecv");
H A Drcopy.c126 ret = rrecv(rs, msg + offset, len - offset, 0);
H A Dcommon.h53 #define rs_recv(s,b,l,f) use_rs ? rrecv(s,b,l,f) : recv(s,b,l,f)

Completed in 86 milliseconds