Lines Matching refs:cpp
411 * *cpp is a pointer to the bytes, *sizep is the count.
412 * If *cpp is NULL maxsize bytes are allocated
418 xdr_bytes(XDR *xdrs, char **cpp, uint_t *sizep, const uint_t maxsize)
420 char *sp = *cpp; /* sp is the actual string pointer */
443 *cpp = sp = malloc(nodesize);
454 *cpp = NULL;
520 * terminated by a NULL character. The parameter cpp references a
526 xdr_string(XDR *xdrs, char **cpp, const uint_t maxsize)
528 char *newsp, *sp = *cpp; /* sp is the actual string pointer */
597 *cpp = sp;
603 *cpp = NULL;
670 xdr_wrapstring(XDR *xdrs, char **cpp)
672 return (xdr_string(xdrs, cpp, LASTUNSIGNED));