Home | History | Annotate | Download | only in Library

Lines Matching refs:Value

22   Sends a 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
47 Sends a 32-bit value to a POST and associated ASCII string.
49 Sends the 32-bit value specified by Value to a POST card, and returns Value.
51 also passed to the handler that displays the POST card value. Some
53 to a POST card device. Other implementations may send Value to ReportStatusCode(),
55 value on the status reporting device.
59 Code Library function, then PostCodeWithDescription() must return Value
62 @param Value The 32-bit value to write to the POST card.
64 POST code value. This is an optional parameter that may
67 @return The 32-bit value to write to the POST card.
73 IN UINT32 Value,
117 Sends a 32-bit value to a POST card.
120 passing in Value. Value is returned.
122 @param Value The 32-bit value to write to the POST card.
124 @return Value The 32-bit value to write to the POST card.
127 #define POST_CODE(Value) PostCodeEnabled() ? PostCode(Value) : Value
130 Sends a 32-bit value to a POST and associated ASCII string.
134 Value and Description. If only POST codes are enabled, then call PostCode()
135 passing in Value. Value is returned.
137 @param Value The 32-bit value to write to the POST card.
139 POST code value.
141 @return Value The 32-bit value to write to the POST card.
143 #define POST_CODE_WITH_DESCRIPTION(Value,Description) \
146 PostCodeWithDescription(Value,Description) : \
147 PostCode(Value)) : \
148 Value