• Home
  • Raw
  • Download

Lines Matching defs:xdr

12 static void xdr_std_destroy(xdr_s_type *xdr)  in xdr_std_destroy()
17 static bool_t xdr_std_control(xdr_s_type *xdr, int request, void *info) in xdr_std_control()
22 static bool_t xdr_std_msg_done(xdr_s_type *xdr) in xdr_std_msg_done()
29 static bool_t xdr_std_msg_start(xdr_s_type *xdr, in xdr_std_msg_start()
75 static bool_t xdr_std_msg_abort(xdr_s_type *xdr) in xdr_std_msg_abort()
87 static bool_t xdr_std_msg_send(xdr_s_type *xdr) in xdr_std_msg_send()
97 static bool_t xdr_std_read(xdr_s_type *xdr) in xdr_std_read()
112 static bool_t xdr_std_send_uint32(xdr_s_type *xdr, const uint32 *value) in xdr_std_send_uint32()
120 static bool_t xdr_std_send_int8(xdr_s_type *xdr, const int8 *value) in xdr_std_send_int8()
126 static bool_t xdr_std_send_uint8(xdr_s_type *xdr, const uint8 *value) in xdr_std_send_uint8()
132 static bool_t xdr_std_send_int16(xdr_s_type *xdr, const int16 *value) in xdr_std_send_int16()
138 static bool_t xdr_std_send_uint16(xdr_s_type *xdr, const uint16 *value) in xdr_std_send_uint16()
144 static bool_t xdr_std_send_int32(xdr_s_type *xdr, const int32 *value) in xdr_std_send_int32()
149 static bool_t xdr_std_send_bytes(xdr_s_type *xdr, const uint8 *buf, in xdr_std_send_bytes()
193 static bool_t xdr_std_recv_uint32(xdr_s_type *xdr, uint32 *value) in xdr_std_recv_uint32()
217 static bool_t xdr_std_recv_int8(xdr_s_type *xdr, int8 *value) in xdr_std_recv_int8()
222 static bool_t xdr_std_recv_uint8(xdr_s_type *xdr, uint8 *value) in xdr_std_recv_uint8()
227 static bool_t xdr_std_recv_int16(xdr_s_type *xdr, int16 *value) in xdr_std_recv_int16()
232 static bool_t xdr_std_recv_uint16(xdr_s_type *xdr, uint16 *value) in xdr_std_recv_uint16()
239 static bool_t xdr_std_recv_int32(xdr_s_type *xdr, int32 *value) in xdr_std_recv_int32()
244 static bool_t xdr_std_recv_bytes(xdr_s_type *xdr, uint8 *buf, uint32 len) in xdr_std_recv_bytes()
281 xdr_s_type *xdr = (xdr_s_type *)calloc(1, sizeof(xdr_s_type)); in xdr_init_common() local
299 xdr_s_type *xdr = (xdr_s_type *)calloc(1, sizeof(xdr_s_type)); in xdr_clone() local
319 void xdr_destroy_common(xdr_s_type *xdr) in xdr_destroy_common()