Lines Matching defs:cpp
480 * *cpp is a pointer to the bytes, *sizep is the count.
481 * If *cpp is NULL maxsize bytes are allocated
484 xdr_bytes(XDR *xdrs, char **cpp, u_int *sizep, u_int maxsize)
486 char *sp = *cpp; /* sp is the actual string pointer */
510 *cpp = sp = mem_alloc(nodesize);
524 *cpp = NULL;
532 *cpp = NULL;
602 * terminated by a NULL character. The parameter cpp references a
608 xdr_string(XDR *xdrs, char **cpp, u_int maxsize)
610 char *sp = *cpp; /* sp is the actual string pointer */
647 *cpp = sp = mem_alloc(nodesize);
662 *cpp = NULL;
669 *cpp = NULL;
681 xdr_wrapstring(XDR *xdrs, char **cpp)
683 return xdr_string(xdrs, cpp, RPC_MAXDATASIZE);