Home | History | Annotate | Download | only in librpc

Lines Matching full:size

38 bool_t xdr_send_enum (xdr_s_type *xdr, const void *value, uint32 size)
40 switch (size) {
52 bool_t xdr_recv_enum (xdr_s_type *xdr, void *value, uint32 size)
54 switch (size) {
199 * > size: size of the array
200 * > elemsize: size of each element
250 * size is the size of the referneced structure.
256 u_int size, /* size of the object pointed to */
267 *pp = (caddr_t) mem_alloc (size);
269 memset(*pp, 0, size);
300 * > obj_size: size of the object.
333 * elsize is the size (in bytes) of each element, and elproc is the
341 u_int elsize, /* size in bytes of each element */
483 u_int size;
495 size = strlen(*cpp);
503 if (!xdr_u_int(xdr, &size)) return FALSE;
504 if (size > maxsize) return FALSE;
505 nodesize = size + 1;
516 (*cpp)[size] = 0;
519 return xdr_opaque(xdr, *cpp, size);