Home | History | Annotate | Download | only in GdbStub

Lines Matching defs:Return

60   Parse the F reply packet and extract the return value and an ErrNo if it exists.

66 @retval other Return the return code from the F reply packet
79 return -1;
88 return RetCode;
96 return RetCode;
103 return RetCode;
186 return RetCode;
266 return RetCode;
285 return EFI_SUCCESS;
327 return EFI_UNSUPPORTED;
349 return EFI_UNSUPPORTED;
357 @param Control A pointer to return the current Control signals from the serial device.
370 return EFI_UNSUPPORTED;
396 UINTN Return;
400 Return = GdbWrite (SerialDev->OutFileDescriptor, Buffer, *BufferSize);
401 if (Return == (UINTN)-1) {
402 return EFI_DEVICE_ERROR;
405 if (Return != *BufferSize) {
406 *BufferSize = Return;
409 return EFI_SUCCESS;
418 @param Buffer The buffer to return the data into.
435 UINTN Return;
439 Return = GdbRead (SerialDev->InFileDescriptor, Buffer, *BufferSize);
440 if (Return == (UINTN)-1) {
441 return EFI_DEVICE_ERROR;
444 if (Return != *BufferSize) {
445 *BufferSize = Return;
448 return EFI_SUCCESS;