Lines Matching refs:bufpp
63 unsigned char **bufpp, in put_mbg_header() argument
67 put_lsb_short(bufpp, headerp->cmd); in put_mbg_header()
68 put_lsb_short(bufpp, headerp->len); in put_mbg_header()
69 put_lsb_short(bufpp, headerp->data_csum); in put_mbg_header()
70 put_lsb_short(bufpp, headerp->hdr_csum); in put_mbg_header()
75 unsigned char **bufpp, in get_mbg_sw_rev() argument
79 sw_revp->code = get_lsb_uint16(bufpp); in get_mbg_sw_rev()
80 memcpy(sw_revp->name, *bufpp, sizeof(sw_revp->name)); in get_mbg_sw_rev()
81 *bufpp += sizeof(sw_revp->name); in get_mbg_sw_rev()
86 unsigned char **bufpp, in get_mbg_ascii_msg() argument
90 ascii_msgp->csum = (CSUM) get_lsb_short(bufpp); in get_mbg_ascii_msg()
91 ascii_msgp->valid = get_lsb_int16(bufpp); in get_mbg_ascii_msg()
92 memcpy(ascii_msgp->s, *bufpp, sizeof(ascii_msgp->s)); in get_mbg_ascii_msg()
93 *bufpp += sizeof(ascii_msgp->s); in get_mbg_ascii_msg()
98 unsigned char **bufpp, in get_mbg_svno() argument
102 *svnop = (SVNO) get_lsb_short(bufpp); in get_mbg_svno()
107 unsigned char **bufpp, in get_mbg_health() argument
111 *healthp = (HEALTH) get_lsb_short(bufpp); in get_mbg_health()
116 unsigned char **bufpp, in get_mbg_cfg() argument
120 *cfgp = (CFG) get_lsb_short(bufpp); in get_mbg_cfg()
125 unsigned char **bufpp, in get_mbg_tgps() argument
129 tgpsp->wn = get_lsb_uint16(bufpp); in get_mbg_tgps()
130 tgpsp->sec = get_lsb_long(bufpp); in get_mbg_tgps()
131 tgpsp->tick = get_lsb_long(bufpp); in get_mbg_tgps()