Home
last modified time | relevance | path

Searched refs:putDebugChar (Results 1 – 9 of 9) sorted by relevance

/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dsparc-stub.c92 extern void putDebugChar(); /* write a single character */
331 putDebugChar ('-'); /* failed checksum */ in getpacket()
335 putDebugChar ('+'); /* successful transfer */ in getpacket()
340 putDebugChar (buffer[0]); in getpacket()
341 putDebugChar (buffer[1]); in getpacket()
364 putDebugChar('$'); in putpacket()
370 putDebugChar(ch); in putpacket()
375 putDebugChar('#'); in putpacket()
376 putDebugChar(hexchars[checksum >> 4]); in putpacket()
377 putDebugChar(hexchars[checksum & 0xf]); in putpacket()
H A Dm68k-stub.c119 extern void putDebugChar(); /* write a single character */
584 putDebugChar ('-'); /* failed checksum */ in getpacket()
588 putDebugChar ('+'); /* successful transfer */ in getpacket()
593 putDebugChar (buffer[0]); in getpacket()
594 putDebugChar (buffer[1]); in getpacket()
618 putDebugChar ('$');
624 putDebugChar (ch);
629 putDebugChar ('#');
630 putDebugChar (hexchars[checksum >> 4]);
631 putDebugChar (hexchars[checksum % 16]);
H A Di386-stub.c100 extern void putDebugChar(); /* write a single character */
505 putDebugChar ('-'); /* failed checksum */ in getpacket()
509 putDebugChar ('+'); /* successful transfer */ in getpacket()
514 putDebugChar (buffer[0]); in getpacket()
515 putDebugChar (buffer[1]); in getpacket()
538 putDebugChar ('$'); in putpacket()
544 putDebugChar (ch); in putpacket()
549 putDebugChar ('#'); in putpacket()
550 putDebugChar (hexchars[checksum >> 4]); in putpacket()
551 putDebugChar (hexchars[checksum % 16]); in putpacket()
H A Dsh-stub.c209 void putDebugChar (char);
428 putDebugChar ('-'); /* failed checksum */ in getpacket()
432 putDebugChar ('+'); /* successful transfer */ in getpacket()
437 putDebugChar (buffer[0]); in getpacket()
438 putDebugChar (buffer[1]); in getpacket()
462 putDebugChar ('$'); in putpacket()
478 putDebugChar (*src); in putpacket()
480 putDebugChar ('*'); in putpacket()
483 putDebugChar (encode); in putpacket()
488 putDebugChar (*src); in putpacket()
[all …]
H A Dm32r-stub.c99 extern void putDebugChar (); /* write a single character */
640 putDebugChar ('-'); /* failed checksum */ in getpacket()
644 putDebugChar ('+'); /* successful transfer */ in getpacket()
649 putDebugChar (buffer[0]); in getpacket()
650 putDebugChar (buffer[1]); in getpacket()
673 putDebugChar ('$'); in putpacket()
679 putDebugChar (ch); in putpacket()
683 putDebugChar ('#'); in putpacket()
684 putDebugChar (hexchars[checksum >> 4]); in putpacket()
685 putDebugChar (hexchars[checksum % 16]); in putpacket()
H A DChangeLog-19951038 * (putpacket): Don't check return value of putDebugChar. It
H A DChangeLog-19943338 * nlm/gdbserve.c (putDebugChar): Install bug fix from i386-nlmstub.
H A DChangeLog-19998732 sparcl-stub, sparclet-stub.c: Change declaration of putDebugChar
/openbsd-src/gnu/usr.bin/binutils/gdb/nlm/
H A Dgdbserve.c194 putDebugChar (unsigned char c) in putDebugChar() function
277 if (! putDebugChar('-')) in getpacket()
284 if (! putDebugChar('+')) in getpacket()
289 if (! putDebugChar (buffer[0]) in getpacket()
290 || ! putDebugChar (buffer[1])) in getpacket()
324 if (! putDebugChar('$')) in putpacket()
331 if (! putDebugChar(ch)) in putpacket()
337 if (! putDebugChar('#') in putpacket()
338 || ! putDebugChar(hexchars[checksum >> 4]) in putpacket()
339 || ! putDebugChar(hexchars[checksum % 16])) in putpacket()
[all …]