Searched defs:RETURN_STATUS (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Include/Common/
H A DBaseTypes.h175 typedef INTN RETURN_STATUS; typedef
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/
H A DBase.h716 typedef UINTN RETURN_STATUS; typedef
719 Produces a RETURN_STATUS code with the highest bit set.
727 #define ENCODE_ERROR(StatusCode) ((RETURN_STATUS)(MAX_BIT | (StatusCode)))
730 Produces a RETURN_STATUS code with the highest bit clear.
738 #define ENCODE_WARNING(StatusCode) ((RETURN_STATUS)(StatusCode))
741 Returns TRUE if a specified RETURN_STATUS code is an error code.
751 #define RETURN_ERROR(StatusCode) (((INTN)(RETURN_STATUS)(StatusCode)) < 0)
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/
H A DBase.h688 typedef UINTN RETURN_STATUS; typedef
691 Produces a RETURN_STATUS code with the highest bit set.
699 #define ENCODE_ERROR(StatusCode) ((RETURN_STATUS)(MAX_BIT | (StatusCode)))
702 Produces a RETURN_STATUS code with the highest bit clear.
710 #define ENCODE_WARNING(StatusCode) ((RETURN_STATUS)(StatusCode))
713 Returns TRUE if a specified RETURN_STATUS code is an error code.
723 #define RETURN_ERROR(StatusCode) (((INTN)(RETURN_STATUS)(StatusCode)) < 0)

Completed in 51 milliseconds