Lines Matching refs:bufpp
65 unsigned char **bufpp, in put_mbg_header() argument
69 put_lsb_short(bufpp, headerp->cmd); in put_mbg_header()
70 put_lsb_short(bufpp, headerp->len); in put_mbg_header()
71 put_lsb_short(bufpp, headerp->data_csum); in put_mbg_header()
72 put_lsb_short(bufpp, headerp->hdr_csum); in put_mbg_header()
77 unsigned char **bufpp, in get_mbg_sw_rev() argument
81 sw_revp->code = get_lsb_uint16(bufpp); in get_mbg_sw_rev()
82 memcpy(sw_revp->name, *bufpp, sizeof(sw_revp->name)); in get_mbg_sw_rev()
83 *bufpp += sizeof(sw_revp->name); in get_mbg_sw_rev()
88 unsigned char **bufpp, in get_mbg_ascii_msg() argument
92 ascii_msgp->csum = (CSUM) get_lsb_short(bufpp); in get_mbg_ascii_msg()
93 ascii_msgp->valid = get_lsb_int16(bufpp); in get_mbg_ascii_msg()
94 memcpy(ascii_msgp->s, *bufpp, sizeof(ascii_msgp->s)); in get_mbg_ascii_msg()
95 *bufpp += sizeof(ascii_msgp->s); in get_mbg_ascii_msg()
100 unsigned char **bufpp, in get_mbg_svno() argument
104 *svnop = (SVNO) get_lsb_short(bufpp); in get_mbg_svno()
109 unsigned char **bufpp, in get_mbg_health() argument
113 *healthp = (HEALTH) get_lsb_short(bufpp); in get_mbg_health()
118 unsigned char **bufpp, in get_mbg_cfg() argument
122 *cfgp = (CFG) get_lsb_short(bufpp); in get_mbg_cfg()
127 unsigned char **bufpp, in get_mbg_tgps() argument
131 tgpsp->wn = get_lsb_uint16(bufpp); in get_mbg_tgps()
132 tgpsp->sec = get_lsb_long(bufpp); in get_mbg_tgps()
133 tgpsp->tick = get_lsb_long(bufpp); in get_mbg_tgps()