Lines Matching +full:pulled +full:- +full:up

5 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
15 - '\\r' is translated to '\\r'
16 - '\\r\\n' is translated to '\\r\\n'
17 - '\\n' is translated to '\\r\\n'
18 - '\\n\\r' is translated to '\\r\\n'
28 - -
29 - The field is left justified. If not flag is not specified, then the
31 - space
32 - Prefix a space character to a number. Only valid for types X, x, and d.
33 - +
34 - Prefix a plus character to a number. Only valid for types X, x, and d.
36 - 0
37 - Pad with 0 characters to the left of a number. Only valid for types
39 - ,
40 - Place a comma every 3rd digit of the number. Only valid for type d.
42 - L, l
43 - The number being printed is size UINT64. Only valid for types X, x, and d.
45 - NOTE: All invalid flags are ignored.
49 - *
50 - The width of the field is specified by a UINTN argument in the
52 - number
53 - The number specified as a decimal value represents the width of
55 - NOTE: If [width] is not specified, then a field width of 0 is assumed.
59 - *
60 - The precision of the field is specified by a UINTN argument in the
62 - number
63 - The number specified as a decimal value represents the precision of
65 - NOTE: If [.precision] is not specified, then a precision of 0 is assumed.
69 - %
70 - Print a %%.
71 - c
72 - The argument is a Unicode character. ASCII characters can be printed
74 - x
75 - The argument is an unsigned hexadecimal number. The characters used are 0..9 and
78 - X
79 - The argument is an unsigned hexadecimal number and the number is padded with
83 - d
84 - The argument is a signed decimal number. If the flag 'L' is not specified,
86 - u
87 - The argument is a unsigned decimal number. If the flag 'L' is not specified,
89 - p
90 - The argument is a pointer that is a (VOID *), and it is printed as an
92 - a
93 - The argument is a pointer to an ASCII string.
95 - S, s
96 - The argument is a pointer to a Unicode string.
98 - g
99 - The argument is a pointer to a GUID structure. The GUID is printed
100 in the format XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX.
102 - t
103 - The argument is a pointer to an EFI_TIME structure. The time and
108 - r
109 - The argument is a RETURN_STATUS value. This value is converted to
111 - RETURN_SUCCESS
112 - "Success"
113 - RETURN_LOAD_ERROR
114 - "Load Error"
115 - RETURN_INVALID_PARAMETER
116 - "Invalid Parameter"
117 - RETURN_UNSUPPORTED
118 - "Unsupported"
119 - RETURN_BAD_BUFFER_SIZE
120 - "Bad Buffer Size"
121 - RETURN_BUFFER_TOO_SMALL
122 - "Buffer Too Small"
123 - RETURN_NOT_READY
124 - "Not Ready"
125 - RETURN_DEVICE_ERROR
126 - "Device Error"
127 - RETURN_WRITE_PROTECTED
128 - "Write Protected"
129 - RETURN_OUT_OF_RESOURCES
130 - "Out of Resources"
131 - RETURN_VOLUME_CORRUPTED
132 - "Volume Corrupt"
133 - RETURN_VOLUME_FULL
134 - "Volume Full"
135 - RETURN_NO_MEDIA
136 - "No Media"
137 - RETURN_MEDIA_CHANGED
138 - "Media changed"
139 - RETURN_NOT_FOUND
140 - "Not Found"
141 - RETURN_ACCESS_DENIED
142 - "Access Denied"
143 - RETURN_NO_RESPONSE
144 - "No Response"
145 - RETURN_NO_MAPPING
146 - "No mapping"
147 - RETURN_TIMEOUT
148 - "Time out"
149 - RETURN_NOT_STARTED
150 - "Not started"
151 - RETURN_ALREADY_STARTED
152 - "Already started"
153 - RETURN_ABORTED
154 - "Aborted"
155 - RETURN_ICMP_ERROR
156 - "ICMP Error"
157 - RETURN_TFTP_ERROR
158 - "TFTP Error"
159 - RETURN_PROTOCOL_ERROR
160 - "Protocol Error"
161 - RETURN_WARN_UNKNOWN_GLYPH
162 - "Warning Unknown Glyph"
163 - RETURN_WARN_DELETE_FAILURE
164 - "Warning Delete Failure"
165 - RETURN_WARN_WRITE_FAILURE
166 - "Warning Write Failure"
167 - RETURN_WARN_BUFFER_TOO_SMALL
168 - "Warning Buffer Too Small"
181 /// "-9,223,372,036,854,775,808"
185 /// "00000000-0000-0000-0000-000000000000"
201 Produces a Null-terminated Unicode string in an output buffer based on
202 a Null-terminated Unicode format string and a VA_LIST argument list.
206 Produces a Null-terminated Unicode string in the output buffer specified by StartOfBuffer
209 Arguments are pulled from the variable argument list specified by Marker based on the
212 the Null-terminator.
214 If StartOfBuffer is not aligned on a 16-bit boundary, then ASSERT().
215 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
225 PcdMaximumUnicodeStringLength Unicode characters not including the Null-terminator, then
230 @param StartOfBuffer A pointer to the output buffer for the produced Null-terminated
233 @param FormatString A Null-terminated Unicode format string.
237 Null-terminator.
250 Produces a Null-terminated Unicode string in an output buffer based on
251 a Null-terminated Unicode format string and a BASE_LIST argument list.
253 Produces a Null-terminated Unicode string in the output buffer specified by StartOfBuffer
256 Arguments are pulled from the variable argument list specified by Marker based on the
259 the Null-terminator.
261 If StartOfBuffer is not aligned on a 16-bit boundary, then ASSERT().
262 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
272 PcdMaximumUnicodeStringLength Unicode characters not including the Null-terminator, then
277 @param StartOfBuffer A pointer to the output buffer for the produced Null-terminated
280 @param FormatString A Null-terminated Unicode format string.
284 Null-terminator.
297 Produces a Null-terminated Unicode string in an output buffer based on a Null-terminated
302 Produces a Null-terminated Unicode string in the output buffer specified by StartOfBuffer
305 Arguments are pulled from the variable argument list based on the contents of the format string.
307 the Null-terminator.
309 If StartOfBuffer is not aligned on a 16-bit boundary, then ASSERT().
310 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
320 PcdMaximumUnicodeStringLength Unicode characters not including the Null-terminator, then
325 @param StartOfBuffer A pointer to the output buffer for the produced Null-terminated
328 @param FormatString A Null-terminated Unicode format string.
333 Null-terminator.
346 Produces a Null-terminated Unicode string in an output buffer based on a Null-terminated
351 Produces a Null-terminated Unicode string in the output buffer specified by StartOfBuffer
354 Arguments are pulled from the variable argument list specified by Marker based on the
357 the Null-terminator.
359 If StartOfBuffer is not aligned on a 16-bit boundary, then ASSERT().
369 PcdMaximumAsciiStringLength Ascii characters not including the Null-terminator, then
374 @param StartOfBuffer A pointer to the output buffer for the produced Null-terminated
377 @param FormatString A Null-terminated ASCII format string.
381 Null-terminator.
394 Produces a Null-terminated Unicode string in an output buffer based on a Null-terminated
397 Produces a Null-terminated Unicode string in the output buffer specified by StartOfBuffer
400 Arguments are pulled from the variable argument list specified by Marker based on the
403 the Null-terminator.
405 If StartOfBuffer is not aligned on a 16-bit boundary, then ASSERT().
415 PcdMaximumAsciiStringLength Ascii characters not including the Null-terminator, then
420 @param StartOfBuffer A pointer to the output buffer for the produced Null-terminated
423 @param FormatString A Null-terminated ASCII format string.
427 Null-terminator.
440 Produces a Null-terminated Unicode string in an output buffer based on a Null-terminated
445 Produces a Null-terminated Unicode string in the output buffer specified by StartOfBuffer
448 Arguments are pulled from the variable argument list based on the contents of the
451 the Null-terminator.
453 If StartOfBuffer is not aligned on a 16-bit boundary, then ASSERT().
463 PcdMaximumAsciiStringLength Ascii characters not including the Null-terminator, then
468 @param StartOfBuffer A pointer to the output buffer for the produced Null-terminated
471 @param FormatString A Null-terminated ASCII format string.
476 Null-terminator.
489 Converts a decimal value to a Null-terminated Unicode string.
491 Converts the decimal number specified by Value to a Null-terminated Unicode
506 Buffer is a '-'.
508 Buffer is padded with '0' characters so the combination of the optional '-'
510 Null-terminator add up to Width characters.
512 If Buffer is not aligned on a 16-bit boundary, then ASSERT().
516 Null-terminated Unicode string.
518 Null-terminator.
521 @param Value The 64-bit signed value to convert to a string.
523 Buffer, not including the Null-terminator.
550 Produces a Null-terminated ASCII string in an output buffer based on a Null-terminated
555 Produces a Null-terminated ASCII string in the output buffer specified by StartOfBuffer
558 Arguments are pulled from the variable argument list specified by Marker based on
561 the Null-terminator.
571 PcdMaximumAsciiStringLength Ascii characters not including the Null-terminator, then
576 @param StartOfBuffer A pointer to the output buffer for the produced Null-terminated
579 @param FormatString A Null-terminated ASCII format string.
583 Null-terminator.
596 Produces a Null-terminated ASCII string in an output buffer based on a Null-terminated
599 Produces a Null-terminated ASCII string in the output buffer specified by StartOfBuffer
602 Arguments are pulled from the variable argument list specified by Marker based on
605 the Null-terminator.
615 PcdMaximumAsciiStringLength Ascii characters not including the Null-terminator, then
620 @param StartOfBuffer A pointer to the output buffer for the produced Null-terminated
623 @param FormatString A Null-terminated ASCII format string.
627 Null-terminator.
640 Produces a Null-terminated ASCII string in an output buffer based on a Null-terminated
645 Produces a Null-terminated ASCII string in the output buffer specified by StartOfBuffer
648 Arguments are pulled from the variable argument list based on the contents of the
651 the Null-terminator.
661 PcdMaximumAsciiStringLength Ascii characters not including the Null-terminator, then
666 @param StartOfBuffer A pointer to the output buffer for the produced Null-terminated
669 @param FormatString A Null-terminated ASCII format string.
674 Null-terminator.
687 Produces a Null-terminated ASCII string in an output buffer based on a Null-terminated
692 Produces a Null-terminated ASCII string in the output buffer specified by StartOfBuffer
695 Arguments are pulled from the variable argument list specified by Marker based on
698 the Null-terminator.
700 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
710 PcdMaximumUnicodeStringLength Unicode characters not including the Null-terminator, then
715 @param StartOfBuffer A pointer to the output buffer for the produced Null-terminated
718 @param FormatString A Null-terminated Unicode format string.
722 Null-terminator.
735 Produces a Null-terminated ASCII string in an output buffer based on a Null-terminated
738 Produces a Null-terminated ASCII string in the output buffer specified by StartOfBuffer
741 Arguments are pulled from the variable argument list specified by Marker based on
744 the Null-terminator.
746 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
756 PcdMaximumUnicodeStringLength Unicode characters not including the Null-terminator, then
761 @param StartOfBuffer A pointer to the output buffer for the produced Null-terminated
764 @param FormatString A Null-terminated Unicode format string.
768 Null-terminator.
781 Produces a Null-terminated ASCII string in an output buffer based on a Null-terminated
786 Produces a Null-terminated ASCII string in the output buffer specified by StartOfBuffer
789 Arguments are pulled from the variable argument list based on the contents of the
792 the Null-terminator.
794 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
804 PcdMaximumUnicodeStringLength Unicode characters not including the Null-terminator, then
809 @param StartOfBuffer A pointer to the output buffer for the produced Null-terminated
812 @param FormatString A Null-terminated Unicode format string.
817 Null-terminator.
830 Converts a decimal value to a Null-terminated Ascii string.
832 Converts the decimal number specified by Value to a Null-terminated Ascii
847 Buffer is a '-'.
849 Buffer is padded with '0' characters so the combination of the optional '-'
851 Null-terminator add up to Width characters.
856 Null-terminated Ascii string.
858 Null-terminator.
861 @param Value The 64-bit signed value to convert to a string.
863 Buffer, not including the Null-terminator.
890 output were produced not including the Null-terminator.
892 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
897 Null-terminator, then ASSERT() and 0 is returned.
899 @param[in] FormatString A Null-terminated Unicode format string.
903 Null-terminator.
914 output were produced not including the Null-terminator.
919 Null-terminator, then ASSERT() and 0 is returned.
921 @param[in] FormatString A Null-terminated ASCII format string.
925 Null-terminator.