Lines Matching refs:cpp
451 * *cpp is a pointer to the bytes, *sizep is the count.
452 * If *cpp is NULL maxsize bytes are allocated
460 xdr_bytes(XDR *xdrs, char **cpp, uint_t *sizep, const uint_t maxsize)
462 char *sp = *cpp; /* sp is the actual string pointer */
484 *cpp = sp = (char *)mem_alloc(nodesize);
493 *cpp = NULL;
560 * terminated by a NULL character. The parameter cpp references a
566 xdr_string(XDR *xdrs, char **cpp, const uint_t maxsize)
568 char *sp = *cpp; /* sp is the actual string pointer */
608 if (*cpp == NULL) {
614 if (*cpp == NULL) {
619 *cpp = sp;
627 *cpp = NULL;
664 xdr_wrapstring(XDR *xdrs, char **cpp)
666 if (xdr_string(xdrs, cpp, LASTUNSIGNED))