Lines Matching refs:hexbuf
726 char hexbuf[5]; in SendPacket() local
733 snprintf(hexbuf, sizeof hexbuf, "%02x", cksum & 0xff); in SendPacket()
734 sendpacket += hexbuf; in SendPacket()
2549 char hexbuf[5]; in cstring_to_asciihex_string() local
2550 snprintf (hexbuf, sizeof(hexbuf), "%02x", c); in cstring_to_asciihex_string()
2551 hex_str += hexbuf; in cstring_to_asciihex_string()
3017 char hexbuf[3]; in HandlePacket_M() local
3018 hexbuf[0] = *p; in HandlePacket_M()
3019 hexbuf[1] = *(p + 1); in HandlePacket_M()
3020 hexbuf[2] = '\0'; in HandlePacket_M()
3022 uint8_t byte = strtoul(hexbuf, NULL, 16); in HandlePacket_M()