Lines Matching refs:Value
22 Sends an 32-bit value to a POST card.
24 Sends the 32-bit value specified by Value to a POST card, and returns Value.
26 directly to a POST card device. Other implementations may send Value to
28 display the 32-bit value on the status reporting device.
32 PostCode() must return Value immediately.
34 @param Value The 32-bit value to write to the POST card.
36 @return The 32-bit value to write to the POST card.
42 IN UINT32 Value
45 DEBUG((EFI_D_INFO, "POST %08x\n", Value));
46 return Value;
51 Sends an 32-bit value to a POST and associated ASCII string.
53 Sends the 32-bit value specified by Value to a POST card, and returns Value.
55 also passed to the handler that displays the POST card value. Some
57 to a POST card device. Other implementations may send Value to ReportStatusCode(),
59 value on the status reporting device.
63 Code Library function, then PostCodeWithDescription() must return Value
66 @param Value The 32-bit value to write to the POST card.
68 POST code value. This is an optional parameter that may
71 @return The 32-bit value to write to the POST card.
77 IN UINT32 Value,
81 DEBUG((EFI_D_INFO, "POST %08x - %s\n", Value, Description));
82 return Value;