Lines Matching refs:hexbuf
809 char hexbuf[5]; in SendPacket() local
816 snprintf(hexbuf, sizeof hexbuf, "%02x", cksum & 0xff); in SendPacket()
817 sendpacket += hexbuf; in SendPacket()
2683 char hexbuf[5]; in cstring_to_asciihex_string() local
2684 snprintf (hexbuf, sizeof(hexbuf), "%02x", c); in cstring_to_asciihex_string()
2685 hex_str += hexbuf; in cstring_to_asciihex_string()
3150 char hexbuf[3]; in HandlePacket_M() local
3151 hexbuf[0] = *p; in HandlePacket_M()
3152 hexbuf[1] = *(p + 1); in HandlePacket_M()
3153 hexbuf[2] = '\0'; in HandlePacket_M()
3155 uint8_t byte = strtoul(hexbuf, NULL, 16); in HandlePacket_M()