Lines Matching refs:gInBuffer
29 CHAR8 gInBuffer[MAX_BUF_SIZE]; variable
1124 ReceivePacket (gInBuffer, MAX_BUF_SIZE); in GdbExceptionHandler()
1126 switch (gInBuffer[0]) { in GdbExceptionHandler()
1132 ContinueAtAddress (SystemContext, gInBuffer); in GdbExceptionHandler()
1140 WriteGeneralRegisters (SystemContext, gInBuffer); in GdbExceptionHandler()
1149 ReadFromMemory (gInBuffer); in GdbExceptionHandler()
1153 WriteToMemory (gInBuffer); in GdbExceptionHandler()
1157 WriteNthRegister (SystemContext, gInBuffer); in GdbExceptionHandler()
1165 if (AsciiStrnCmp (gInBuffer, "qSupported", 10) == 0) { in GdbExceptionHandler()
1169 } else if (AsciiStrnCmp (gInBuffer, "qXfer:libraries:read::", 22) == 0) { in GdbExceptionHandler()
1172 for (Ptr = &gInBuffer[22]; *Ptr != ','; Ptr++); in GdbExceptionHandler()
1175 QxferLibrary (AsciiStrHexToUintn (&gInBuffer[22]), AsciiStrHexToUintn (++Ptr)); in GdbExceptionHandler()
1176 } if (AsciiStrnCmp (gInBuffer, "qOffsets", 10) == 0) { in GdbExceptionHandler()
1186 SingleStep (SystemContext, gInBuffer); in GdbExceptionHandler()
1190 RemoveBreakPoint (SystemContext, gInBuffer); in GdbExceptionHandler()
1194 InsertBreakPoint (SystemContext, gInBuffer); in GdbExceptionHandler()