HomeSort by relevance Sort by last modified time
    Searched defs:OutBufPtr (Results 1 - 8 of 8) sorted by null

  /device/linaro/bootloader/edk2/EmbeddedPkg/GdbStub/Arm/
Processor.c 156 Adds the RegNumber-th register's value to the output buffer, starting at the given OutBufPtr
159 @param OutBufPtr pointer to the output buffer's end. the new data will be added from this point on.
166 IN CHAR8 *OutBufPtr
173 AsciiSPrint (OutBufPtr, 9, "00000000");
174 OutBufPtr += 8;
175 return OutBufPtr;
184 *OutBufPtr++ = Char;
190 *OutBufPtr++ = Char;
194 return OutBufPtr;
211 CHAR8 *OutBufPtr; // pointer to the output buffer
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/GdbStub/Ia32/
Processor.c 162 Adds the RegNumber-th register's value to the output buffer, starting at the given OutBufPtr
166 @param OutBufPtr pointer to the output buffer's end. the new data will be added from this point on.
173 IN CHAR8 *OutBufPtr
180 *OutBufPtr++ = mHexToStr[((*FindPointerToRegister (SystemContext, RegNumber) >> (RegSize+4)) & 0xf)];
181 *OutBufPtr++ = mHexToStr[((*FindPointerToRegister (SystemContext, RegNumber) >> RegSize) & 0xf)];
184 return OutBufPtr;
203 CHAR8 *OutBufPtr; // pointer to the output buffer
212 OutBufPtr = OutBuffer;
213 OutBufPtr = BasicReadRegister (SystemContext, RegNumber, OutBufPtr);
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/GdbStub/X64/
Processor.c 134 Adds the RegNumber-th register's value to the output buffer, starting at the given OutBufPtr
137 @param OutBufPtr pointer to the output buffer's end. the new data will be added from this point on.
144 IN CHAR8 *OutBufPtr
151 *OutBufPtr++ = mHexToStr[((*FindPointerToRegister(SystemContext, RegNumber) >> (RegSize+4)) & 0xf)];
152 *OutBufPtr++ = mHexToStr[((*FindPointerToRegister(SystemContext, RegNumber) >> RegSize) & 0xf)];
155 return OutBufPtr;
172 CHAR8 *OutBufPtr; // pointer to the output buffer
181 OutBufPtr = OutBuffer;
182 OutBufPtr = BasicReadRegister(SystemContext, RegNumber, OutBufPtr);
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/GdbDebugAgent/Arm/
Processor.c 171 Adds the RegNumber-th register's value to the output buffer, starting at the given OutBufPtr
174 @param OutBufPtr pointer to the output buffer's end. the new data will be added from this point on.
181 IN CHAR8 *OutBufPtr
188 AsciiSPrint(OutBufPtr, 9, "00000000");
189 OutBufPtr += 8;
190 return OutBufPtr;
199 *OutBufPtr++ = Char;
205 *OutBufPtr++ = Char;
209 return OutBufPtr;
226 CHAR8 *OutBufPtr; // pointer to the output buffer
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/GdbDebugAgent/
GdbDebugAgent.c 46 CHAR8 *OutBufPtr; // pointer to the output buffer
51 OutBufPtr = gOutBuffer;
52 *OutBufPtr++ = Type;
56 OutBufPtr = gOutBuffer;
61 *OutBufPtr++ = 0x7d;
65 *OutBufPtr++ = Char;
69 *OutBufPtr = '\0' ; // the end of the buffer
169 CHAR8 *OutBufPtr; // pointer to the output buffer
172 OutBufPtr = OutBuffer;
179 *OutBufPtr++ = Char;
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/GdbDebugAgent/Ia32/
Processor.c 148 Adds the RegNumber-th register's value to the output buffer, starting at the given OutBufPtr
152 @param OutBufPtr pointer to the output buffer's end. the new data will be added from this point on.
159 IN CHAR8 *OutBufPtr
166 *OutBufPtr++ = mHexToStr[((*FindPointerToRegister(SystemContext, RegNumber) >> (RegSize+4)) & 0xf)];
167 *OutBufPtr++ = mHexToStr[((*FindPointerToRegister(SystemContext, RegNumber) >> RegSize) & 0xf)];
170 return OutBufPtr;
189 CHAR8 *OutBufPtr; // pointer to the output buffer
198 OutBufPtr = OutBuffer;
199 OutBufPtr = BasicReadRegister(SystemContext, RegNumber, OutBufPtr);
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/GdbDebugAgent/X64/
Processor.c 134 Adds the RegNumber-th register's value to the output buffer, starting at the given OutBufPtr
137 @param OutBufPtr pointer to the output buffer's end. the new data will be added from this point on.
144 IN CHAR8 *OutBufPtr
151 *OutBufPtr++ = mHexToStr[((*FindPointerToRegister(SystemContext, RegNumber) >> (RegSize+4)) & 0xf)];
152 *OutBufPtr++ = mHexToStr[((*FindPointerToRegister(SystemContext, RegNumber) >> RegSize) & 0xf)];
155 return OutBufPtr;
172 CHAR8 *OutBufPtr; // pointer to the output buffer
181 OutBufPtr = OutBuffer;
182 OutBufPtr = BasicReadRegister(SystemContext, RegNumber, OutBufPtr);
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/GdbStub/
GdbStub.c 232 CHAR8 *OutBufPtr; // pointer to the output buffer
240 OutBufPtr = OutBuffer;
247 *OutBufPtr++ = Char;
253 *OutBufPtr++ = Char;
259 *OutBufPtr = '\0' ; // the end of the buffer
794 CHAR8 *OutBufPtr; // pointer to the output buffer
799 OutBufPtr = gOutBuffer;
800 *OutBufPtr++ = Type;
804 OutBufPtr = gOutBuffer;
809 *OutBufPtr++ = 0x7d;
    [all...]

Completed in 104 milliseconds