Lines Matching defs:cpp
419 * *cpp is a pointer to the bytes, *sizep is the count.
420 * If *cpp is NULL maxsize bytes are allocated
426 xdr_bytes(XDR *xdrs, char **cpp, uint_t *sizep, const uint_t maxsize)
428 char *sp = *cpp; /* sp is the actual string pointer */
451 *cpp = sp = malloc(nodesize);
462 *cpp = NULL;
528 * terminated by a NULL character. The parameter cpp references a
534 xdr_string(XDR *xdrs, char **cpp, const uint_t maxsize)
536 char *newsp, *sp = *cpp; /* sp is the actual string pointer */
605 *cpp = sp;
611 *cpp = NULL;
677 xdr_wrapstring(XDR *xdrs, char **cpp)
679 return (xdr_string(xdrs, cpp, LASTUNSIGNED));