Lines Matching +full:post +full:-

1 .\" Licensed under the OpenIB.org BSD license (FreeBSD Variant) - See COPYING.md
2 .TH "RDMA_CM" 7 "2010-07-19" "librdmacm" "Librdmacm Programmer's Manual" librdmacm
4 rdma_cm \- RDMA communication manager.
35 rdma_reg_msgs - register an array of buffers for sending and receiving
37 rdma_reg_read - registers a buffer for RDMA read operations
39 rdma_reg_write - registers a buffer for RDMA write operations
41 rdma_dereg_mr - deregisters a memory region
43 rdma_post_recv - post a buffer to receive a message
45 rdma_post_send - post a buffer to send a message
47 rdma_post_read - post an RDMA to read data into a buffer
49 rdma_post_write - post an RDMA to send data from a buffer
51 rdma_post_recvv - post a vector of buffers to receive a message
53 rdma_post_sendv - post a vector of buffers to send a message
55 rdma_post_readv - post a vector of buffers to receive an RDMA read
57 rdma_post_writev - post a vector of buffers to send an RDMA write
59 rdma_post_ud_send - post a buffer to send a message on a UD QP
61 rdma_get_send_comp - get completion status for a send or RDMA operation
63 rdma_get_recv_comp - get information about a completed receive
103 tear-down connection
151 tear-down connection
163 .IP "= -1"
164 error - see errno for more details
166 Most librdmacm functions return 0 to indicate success, and a -1 return value
170 return value is -1, then errno will contain additional information
173 Prior versions of the library would return -errno and not set errno for some cases
176 must manually set errno to the negative of the return code if it is < -1.