Lines Matching refs:output_buffer
162 static char output_buffer[BUFMAX]; variable
1247 ptr = output_buffer; in gdbstub()
1251 putpacket(output_buffer); in gdbstub()
1270 ptr = output_buffer; in gdbstub()
1285 putpacket(output_buffer); /* send it off... */ in gdbstub()
1288 ptr = output_buffer; in gdbstub()
1311 putpacket(output_buffer); /* send it off... */ in gdbstub()
1317 ptr = output_buffer; in gdbstub()
1351 putpacket(output_buffer); /* send it off... */ in gdbstub()
1358 output_buffer[0] = 0; in gdbstub()
1364 output_buffer[0] = 'S'; in gdbstub()
1365 output_buffer[1] = hex_asc_hi(sigval); in gdbstub()
1366 output_buffer[2] = hex_asc_lo(sigval); in gdbstub()
1367 output_buffer[3] = 0; in gdbstub()
1380 ptr = output_buffer; in gdbstub()
1480 gdbstub_strcpy(output_buffer, "OK"); in gdbstub()
1494 if (mem2hex((char *) addr, output_buffer, in gdbstub()
1497 gdbstub_strcpy(output_buffer, "E03"); in gdbstub()
1499 gdbstub_strcpy(output_buffer, "E01"); in gdbstub()
1516 gdbstub_strcpy(output_buffer, "OK"); in gdbstub()
1518 gdbstub_strcpy(output_buffer, "E03"); in gdbstub()
1522 gdbstub_strcpy(output_buffer, "E02"); in gdbstub()
1566 gdbstub_strcpy(output_buffer, "E01"); in gdbstub()
1579 gdbstub_strcpy(output_buffer, "B01"); in gdbstub()
1601 gdbstub_strcpy(output_buffer, "E01"); in gdbstub()
1606 gdbstub_strcpy(output_buffer, "E03"); in gdbstub()
1616 gdbstub_strcpy(output_buffer, "OK"); in gdbstub()
1629 gdbstub_strcpy(output_buffer, "E01"); in gdbstub()
1634 gdbstub_strcpy(output_buffer, "E03"); in gdbstub()
1644 gdbstub_strcpy(output_buffer, "OK"); in gdbstub()
1654 putpacket(output_buffer); in gdbstub()
1816 output_buffer[0] = 'W'; in gdbstub_exit()
1817 output_buffer[1] = hex_asc_hi(status); in gdbstub_exit()
1818 output_buffer[2] = hex_asc_lo(status); in gdbstub_exit()
1819 output_buffer[3] = 0; in gdbstub_exit()
1825 while ((ch = output_buffer[count]) != 0) { in gdbstub_exit()