Home | History | Annotate | Download | only in rpc

Lines Matching defs:bool_t

47  *      bool_t
78 typedef int bool_t; /* This has to be a long, as it is used for XDR boolean too, which is a 4-byte value */
130 * bool_t (*xdrproc_t)(XDR *, caddr_t *);
132 typedef bool_t (*xdrproc_t) (XDR *, void *,...);
350 bool_t (*xdr_control) (xdr_s_type *xdr, int request, void *info);
353 bool_t (*read) (xdr_s_type *xdr);
354 bool_t (*msg_done) (xdr_s_type *xdr);
357 bool_t (*msg_start) (xdr_s_type *xdr, rpc_msg_e_type rpc_msg_type);
358 bool_t (*msg_abort) (xdr_s_type *xdr);
359 bool_t (*msg_send) (xdr_s_type *xdr);
362 bool_t (*send_int8) (xdr_s_type *xdr, const int8 *value);
363 bool_t (*send_uint8) (xdr_s_type *xdr, const uint8 *value);
364 bool_t (*send_int16) (xdr_s_type *xdr, const int16 *value);
365 bool_t (*send_uint16) (xdr_s_type *xdr, const uint16 *value);
366 bool_t (*send_int32) (xdr_s_type *xdr, const int32 *value);
367 bool_t (*send_uint32) (xdr_s_type *xdr, const uint32 *value);
368 bool_t (*send_bytes) (xdr_s_type *xdr, const uint8 *buf, uint32 len);
370 bool_t (*recv_int8) (xdr_s_type *xdr, int8 *value);
371 bool_t (*recv_uint8) (xdr_s_type *xdr, uint8 *value);
372 bool_t (*recv_int16) (xdr_s_type *xdr, int16 *value);
373 bool_t (*recv_uint16) (xdr_s_type *xdr, uint16 *value);
374 bool_t (*recv_int32) (xdr_s_type *xdr, int32 *value);
375 bool_t (*recv_uint32) (xdr_s_type *xdr, uint32 *value);
376 bool_t (*recv_bytes) (xdr_s_type *xdr, uint8 *buf, uint32 len);