Searched defs:xdr_ops (Results 1 – 2 of 2) sorted by relevance
/titanic_41/usr/src/lib/libbc/inc/include/rpc/ |
H A D | xdr.h | 104 struct xdr_ops { struct 105 bool_t (*x_getlong)(); /* get a long from underlying stream */ 106 bool_t (*x_putlong)(); /* put a long to " */ 107 bool_t (*x_getbytes)(); /* get some bytes from " */ 108 bool_t (*x_putbytes)(); /* put some bytes to " */ 109 u_int (*x_getpostn)(); /* returns bytes off from beginning */ 110 bool_t (*x_setpostn)(); /* lets you reposition the stream */ 111 long * (*x_inline)(); /* buf quick ptr to buffered data */ 112 void (*x_destroy)(); /* free privates of this xdr_stream */
|
/titanic_41/usr/src/uts/common/rpc/ |
H A D | xdr.h | 128 struct xdr_ops { struct 131 bool_t (*x_getlong)(struct XDR *, long *); 133 bool_t (*x_putlong)(struct XDR *, long *); 136 bool_t (*x_getbytes)(struct XDR *, caddr_t, int); 138 bool_t (*x_putbytes)(struct XDR *, caddr_t, int); 140 uint_t (*x_getpostn)(struct XDR *); 142 bool_t (*x_setpostn)(struct XDR *, uint_t); 144 rpc_inline_t *(*x_inline)(struct XDR *, int); 146 void (*x_destroy)(struct XDR *); 148 bool_t (*x_control)(struct XDR *, int, void *); [all …]
|