Lines Matching defs:cpp
550 * *cpp is a pointer to the bytes, *sizep is the count.
551 * If *cpp is NULL maxsize bytes are allocated
554 xdr_bytes(XDR *xdrs, char **cpp, u_int *sizep, u_int maxsize)
556 char *sp = *cpp; /* sp is the actual string pointer */
581 *cpp = sp = mem_alloc(nodesize);
595 *cpp = NULL;
603 *cpp = NULL;
678 * terminated by a NULL character. The parameter cpp references a
684 xdr_string(XDR *xdrs, char **cpp, u_int maxsize)
686 char *sp = *cpp; /* sp is the actual string pointer */
724 *cpp = sp = mem_alloc(nodesize);
739 *cpp = NULL;
746 *cpp = NULL;
758 xdr_wrapstring(XDR *xdrs, char **cpp)
760 return xdr_string(xdrs, cpp, RPC_MAXDATASIZE);