Lines Matching defs:cpp
491 * *cpp is a pointer to the bytes, *sizep is the count.
492 * If *cpp is NULL maxsize bytes are allocated
495 xdr_bytes(XDR *xdrs, char **cpp, u_int *sizep, u_int maxsize)
497 char *sp = *cpp; /* sp is the actual string pointer */
521 *cpp = sp = (char *)mem_alloc(nodesize);
533 *cpp = NULL;
606 * terminated by a NULL character. The parameter cpp references a
612 xdr_string(XDR *xdrs, char **cpp, u_int maxsize)
614 char *sp = *cpp; /* sp is the actual string pointer */
651 *cpp = sp = (char *)mem_alloc(nodesize);
662 *cpp = NULL;
674 xdr_wrapstring(XDR *xdrs, char **cpp)
676 return xdr_string(xdrs, cpp, LASTUNSIGNED);