Home
last modified time | relevance | path

Searched refs:pack_hex_byte (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dremote.c1121 static char *pack_hex_byte (char *pkt, int /*unsigned char */ byte);
1262 pack_hex_byte (char *pkt, int byte) in pack_hex_byte() function
1279 buf = pack_hex_byte (buf, (value >> 24) & 0xff); in pack_int()
1280 buf = pack_hex_byte (buf, (value >> 16) & 0xff); in pack_int()
1281 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff); in pack_int()
1282 buf = pack_hex_byte (buf, (value & 0xff)); in pack_int()
1305 pkt = pack_hex_byte (pkt, len);
1335 pkt = pack_hex_byte (pkt, *altid++); in pack_threadid()
1574 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */ in pack_threadlist_request()
H A DChangeLog-19997884 remote.c (pack_hex_byte, remote_query): Promote char parameters to