Sync ACPICA with Intel's version 20180508 (from previously 20170831).
[dragonfly.git] / sys / contrib / dev / acpica / source / components / utilities / utprint.c
bloba3516a47a2a26fc414bb4521d6e71feb9102ec52
1 /******************************************************************************
3 * Module Name: utprint - Formatted printing routines
5 *****************************************************************************/
7 /******************************************************************************
9 * 1. Copyright Notice
11 * Some or all of this work - Copyright (c) 1999 - 2018, Intel Corp.
12 * All rights reserved.
14 * 2. License
16 * 2.1. This is your license from Intel Corp. under its intellectual property
17 * rights. You may have additional license terms from the party that provided
18 * you this software, covering your right to use that party's intellectual
19 * property rights.
21 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
22 * copy of the source code appearing in this file ("Covered Code") an
23 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
24 * base code distributed originally by Intel ("Original Intel Code") to copy,
25 * make derivatives, distribute, use and display any portion of the Covered
26 * Code in any form, with the right to sublicense such rights; and
28 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
29 * license (with the right to sublicense), under only those claims of Intel
30 * patents that are infringed by the Original Intel Code, to make, use, sell,
31 * offer to sell, and import the Covered Code and derivative works thereof
32 * solely to the minimum extent necessary to exercise the above copyright
33 * license, and in no event shall the patent license extend to any additions
34 * to or modifications of the Original Intel Code. No other license or right
35 * is granted directly or by implication, estoppel or otherwise;
37 * The above copyright and patent license is granted only if the following
38 * conditions are met:
40 * 3. Conditions
42 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
43 * Redistribution of source code of any substantial portion of the Covered
44 * Code or modification with rights to further distribute source must include
45 * the above Copyright Notice, the above License, this list of Conditions,
46 * and the following Disclaimer and Export Compliance provision. In addition,
47 * Licensee must cause all Covered Code to which Licensee contributes to
48 * contain a file documenting the changes Licensee made to create that Covered
49 * Code and the date of any change. Licensee must include in that file the
50 * documentation of any changes made by any predecessor Licensee. Licensee
51 * must include a prominent statement that the modification is derived,
52 * directly or indirectly, from Original Intel Code.
54 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
55 * Redistribution of source code of any substantial portion of the Covered
56 * Code or modification without rights to further distribute source must
57 * include the following Disclaimer and Export Compliance provision in the
58 * documentation and/or other materials provided with distribution. In
59 * addition, Licensee may not authorize further sublicense of source of any
60 * portion of the Covered Code, and must include terms to the effect that the
61 * license from Licensee to its licensee is limited to the intellectual
62 * property embodied in the software Licensee provides to its licensee, and
63 * not to intellectual property embodied in modifications its licensee may
64 * make.
66 * 3.3. Redistribution of Executable. Redistribution in executable form of any
67 * substantial portion of the Covered Code or modification must reproduce the
68 * above Copyright Notice, and the following Disclaimer and Export Compliance
69 * provision in the documentation and/or other materials provided with the
70 * distribution.
72 * 3.4. Intel retains all right, title, and interest in and to the Original
73 * Intel Code.
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
76 * Intel shall be used in advertising or otherwise to promote the sale, use or
77 * other dealings in products derived from or relating to the Covered Code
78 * without prior written authorization from Intel.
80 * 4. Disclaimer and Export Compliance
82 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
83 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
84 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
85 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
86 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
87 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
88 * PARTICULAR PURPOSE.
90 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
91 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
92 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
93 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
94 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
95 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
96 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
97 * LIMITED REMEDY.
99 * 4.3. Licensee shall not export, either directly or indirectly, any of this
100 * software or system incorporating such software without first obtaining any
101 * required license or other approval from the U. S. Department of Commerce or
102 * any other agency or department of the United States Government. In the
103 * event Licensee exports any such software from the United States or
104 * re-exports any such software from a foreign destination, Licensee shall
105 * ensure that the distribution and export/re-export of the software is in
106 * compliance with all laws, regulations, orders, or other restrictions of the
107 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
108 * any of its subsidiaries will export/re-export any technical data, process,
109 * software, or service, directly or indirectly, to any country for which the
110 * United States government or any agency thereof requires an export license,
111 * other governmental approval, or letter of assurance, without first obtaining
112 * such license, approval or letter.
114 *****************************************************************************
116 * Alternatively, you may choose to be licensed under the terms of the
117 * following license:
119 * Redistribution and use in source and binary forms, with or without
120 * modification, are permitted provided that the following conditions
121 * are met:
122 * 1. Redistributions of source code must retain the above copyright
123 * notice, this list of conditions, and the following disclaimer,
124 * without modification.
125 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
126 * substantially similar to the "NO WARRANTY" disclaimer below
127 * ("Disclaimer") and any redistribution must be conditioned upon
128 * including a substantially similar Disclaimer requirement for further
129 * binary redistribution.
130 * 3. Neither the names of the above-listed copyright holders nor the names
131 * of any contributors may be used to endorse or promote products derived
132 * from this software without specific prior written permission.
134 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
135 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
136 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
137 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
138 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
139 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
140 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
141 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
142 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
143 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
144 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
146 * Alternatively, you may choose to be licensed under the terms of the
147 * GNU General Public License ("GPL") version 2 as published by the Free
148 * Software Foundation.
150 *****************************************************************************/
152 #include "acpi.h"
153 #include "accommon.h"
155 #define _COMPONENT ACPI_UTILITIES
156 ACPI_MODULE_NAME ("utprint")
159 #define ACPI_FORMAT_SIGN 0x01
160 #define ACPI_FORMAT_SIGN_PLUS 0x02
161 #define ACPI_FORMAT_SIGN_PLUS_SPACE 0x04
162 #define ACPI_FORMAT_ZERO 0x08
163 #define ACPI_FORMAT_LEFT 0x10
164 #define ACPI_FORMAT_UPPER 0x20
165 #define ACPI_FORMAT_PREFIX 0x40
168 /* Local prototypes */
170 static ACPI_SIZE
171 AcpiUtBoundStringLength (
172 const char *String,
173 ACPI_SIZE Count);
175 static char *
176 AcpiUtBoundStringOutput (
177 char *String,
178 const char *End,
179 char c);
181 static char *
182 AcpiUtFormatNumber (
183 char *String,
184 char *End,
185 UINT64 Number,
186 UINT8 Base,
187 INT32 Width,
188 INT32 Precision,
189 UINT8 Type);
191 static char *
192 AcpiUtPutNumber (
193 char *String,
194 UINT64 Number,
195 UINT8 Base,
196 BOOLEAN Upper);
199 /*******************************************************************************
201 * FUNCTION: AcpiUtBoundStringLength
203 * PARAMETERS: String - String with boundary
204 * Count - Boundary of the string
206 * RETURN: Length of the string. Less than or equal to Count.
208 * DESCRIPTION: Calculate the length of a string with boundary.
210 ******************************************************************************/
212 static ACPI_SIZE
213 AcpiUtBoundStringLength (
214 const char *String,
215 ACPI_SIZE Count)
217 UINT32 Length = 0;
220 while (*String && Count)
222 Length++;
223 String++;
224 Count--;
227 return (Length);
231 /*******************************************************************************
233 * FUNCTION: AcpiUtBoundStringOutput
235 * PARAMETERS: String - String with boundary
236 * End - Boundary of the string
237 * c - Character to be output to the string
239 * RETURN: Updated position for next valid character
241 * DESCRIPTION: Output a character into a string with boundary check.
243 ******************************************************************************/
245 static char *
246 AcpiUtBoundStringOutput (
247 char *String,
248 const char *End,
249 char c)
252 if (String < End)
254 *String = c;
257 ++String;
258 return (String);
262 /*******************************************************************************
264 * FUNCTION: AcpiUtPutNumber
266 * PARAMETERS: String - Buffer to hold reverse-ordered string
267 * Number - Integer to be converted
268 * Base - Base of the integer
269 * Upper - Whether or not using upper cased digits
271 * RETURN: Updated position for next valid character
273 * DESCRIPTION: Convert an integer into a string, note that, the string holds a
274 * reversed ordered number without the trailing zero.
276 ******************************************************************************/
278 static char *
279 AcpiUtPutNumber (
280 char *String,
281 UINT64 Number,
282 UINT8 Base,
283 BOOLEAN Upper)
285 const char *Digits;
286 UINT64 DigitIndex;
287 char *Pos;
290 Pos = String;
291 Digits = Upper ? AcpiGbl_UpperHexDigits : AcpiGbl_LowerHexDigits;
293 if (Number == 0)
295 *(Pos++) = '0';
297 else
299 while (Number)
301 (void) AcpiUtDivide (Number, Base, &Number, &DigitIndex);
302 *(Pos++) = Digits[DigitIndex];
306 /* *(Pos++) = '0'; */
307 return (Pos);
311 /*******************************************************************************
313 * FUNCTION: AcpiUtScanNumber
315 * PARAMETERS: String - String buffer
316 * NumberPtr - Where the number is returned
318 * RETURN: Updated position for next valid character
320 * DESCRIPTION: Scan a string for a decimal integer.
322 ******************************************************************************/
324 const char *
325 AcpiUtScanNumber (
326 const char *String,
327 UINT64 *NumberPtr)
329 UINT64 Number = 0;
332 while (isdigit ((int) *String))
334 AcpiUtShortMultiply (Number, 10, &Number);
335 Number += *(String++) - '0';
338 *NumberPtr = Number;
339 return (String);
343 /*******************************************************************************
345 * FUNCTION: AcpiUtPrintNumber
347 * PARAMETERS: String - String buffer
348 * Number - The number to be converted
350 * RETURN: Updated position for next valid character
352 * DESCRIPTION: Print a decimal integer into a string.
354 ******************************************************************************/
356 const char *
357 AcpiUtPrintNumber (
358 char *String,
359 UINT64 Number)
361 char AsciiString[20];
362 const char *Pos1;
363 char *Pos2;
366 Pos1 = AcpiUtPutNumber (AsciiString, Number, 10, FALSE);
367 Pos2 = String;
369 while (Pos1 != AsciiString)
371 *(Pos2++) = *(--Pos1);
374 *Pos2 = 0;
375 return (String);
379 /*******************************************************************************
381 * FUNCTION: AcpiUtFormatNumber
383 * PARAMETERS: String - String buffer with boundary
384 * End - Boundary of the string
385 * Number - The number to be converted
386 * Base - Base of the integer
387 * Width - Field width
388 * Precision - Precision of the integer
389 * Type - Special printing flags
391 * RETURN: Updated position for next valid character
393 * DESCRIPTION: Print an integer into a string with any base and any precision.
395 ******************************************************************************/
397 static char *
398 AcpiUtFormatNumber (
399 char *String,
400 char *End,
401 UINT64 Number,
402 UINT8 Base,
403 INT32 Width,
404 INT32 Precision,
405 UINT8 Type)
407 char *Pos;
408 char Sign;
409 char Zero;
410 BOOLEAN NeedPrefix;
411 BOOLEAN Upper;
412 INT32 i;
413 char ReversedString[66];
416 /* Parameter validation */
418 if (Base < 2 || Base > 16)
420 return (NULL);
423 if (Type & ACPI_FORMAT_LEFT)
425 Type &= ~ACPI_FORMAT_ZERO;
428 NeedPrefix = ((Type & ACPI_FORMAT_PREFIX) && Base != 10) ? TRUE : FALSE;
429 Upper = (Type & ACPI_FORMAT_UPPER) ? TRUE : FALSE;
430 Zero = (Type & ACPI_FORMAT_ZERO) ? '0' : ' ';
432 /* Calculate size according to sign and prefix */
434 Sign = '\0';
435 if (Type & ACPI_FORMAT_SIGN)
437 if ((INT64) Number < 0)
439 Sign = '-';
440 Number = - (INT64) Number;
441 Width--;
443 else if (Type & ACPI_FORMAT_SIGN_PLUS)
445 Sign = '+';
446 Width--;
448 else if (Type & ACPI_FORMAT_SIGN_PLUS_SPACE)
450 Sign = ' ';
451 Width--;
454 if (NeedPrefix)
456 Width--;
457 if (Base == 16)
459 Width--;
463 /* Generate full string in reverse order */
465 Pos = AcpiUtPutNumber (ReversedString, Number, Base, Upper);
466 i = (INT32) ACPI_PTR_DIFF (Pos, ReversedString);
468 /* Printing 100 using %2d gives "100", not "00" */
470 if (i > Precision)
472 Precision = i;
475 Width -= Precision;
477 /* Output the string */
479 if (!(Type & (ACPI_FORMAT_ZERO | ACPI_FORMAT_LEFT)))
481 while (--Width >= 0)
483 String = AcpiUtBoundStringOutput (String, End, ' ');
486 if (Sign)
488 String = AcpiUtBoundStringOutput (String, End, Sign);
490 if (NeedPrefix)
492 String = AcpiUtBoundStringOutput (String, End, '0');
493 if (Base == 16)
495 String = AcpiUtBoundStringOutput (
496 String, End, Upper ? 'X' : 'x');
499 if (!(Type & ACPI_FORMAT_LEFT))
501 while (--Width >= 0)
503 String = AcpiUtBoundStringOutput (String, End, Zero);
507 while (i <= --Precision)
509 String = AcpiUtBoundStringOutput (String, End, '0');
511 while (--i >= 0)
513 String = AcpiUtBoundStringOutput (String, End,
514 ReversedString[i]);
516 while (--Width >= 0)
518 String = AcpiUtBoundStringOutput (String, End, ' ');
521 return (String);
525 /*******************************************************************************
527 * FUNCTION: vsnprintf
529 * PARAMETERS: String - String with boundary
530 * Size - Boundary of the string
531 * Format - Standard printf format
532 * Args - Argument list
534 * RETURN: Number of bytes actually written.
536 * DESCRIPTION: Formatted output to a string using argument list pointer.
538 ******************************************************************************/
541 vsnprintf (
542 char *String,
543 ACPI_SIZE Size,
544 const char *Format,
545 va_list Args)
547 UINT8 Base;
548 UINT8 Type;
549 INT32 Width;
550 INT32 Precision;
551 char Qualifier;
552 UINT64 Number;
553 char *Pos;
554 char *End;
555 char c;
556 const char *s;
557 const void *p;
558 INT32 Length;
559 int i;
562 Pos = String;
563 End = String + Size;
565 for (; *Format; ++Format)
567 if (*Format != '%')
569 Pos = AcpiUtBoundStringOutput (Pos, End, *Format);
570 continue;
573 Type = 0;
574 Base = 10;
576 /* Process sign */
580 ++Format;
581 if (*Format == '#')
583 Type |= ACPI_FORMAT_PREFIX;
585 else if (*Format == '0')
587 Type |= ACPI_FORMAT_ZERO;
589 else if (*Format == '+')
591 Type |= ACPI_FORMAT_SIGN_PLUS;
593 else if (*Format == ' ')
595 Type |= ACPI_FORMAT_SIGN_PLUS_SPACE;
597 else if (*Format == '-')
599 Type |= ACPI_FORMAT_LEFT;
601 else
603 break;
606 } while (1);
608 /* Process width */
610 Width = -1;
611 if (isdigit ((int) *Format))
613 Format = AcpiUtScanNumber (Format, &Number);
614 Width = (INT32) Number;
616 else if (*Format == '*')
618 ++Format;
619 Width = va_arg (Args, int);
620 if (Width < 0)
622 Width = -Width;
623 Type |= ACPI_FORMAT_LEFT;
627 /* Process precision */
629 Precision = -1;
630 if (*Format == '.')
632 ++Format;
633 if (isdigit ((int) *Format))
635 Format = AcpiUtScanNumber (Format, &Number);
636 Precision = (INT32) Number;
638 else if (*Format == '*')
640 ++Format;
641 Precision = va_arg (Args, int);
644 if (Precision < 0)
646 Precision = 0;
650 /* Process qualifier */
652 Qualifier = -1;
653 if (*Format == 'h' || *Format == 'l' || *Format == 'L')
655 Qualifier = *Format;
656 ++Format;
658 if (Qualifier == 'l' && *Format == 'l')
660 Qualifier = 'L';
661 ++Format;
665 switch (*Format)
667 case '%':
669 Pos = AcpiUtBoundStringOutput (Pos, End, '%');
670 continue;
672 case 'c':
674 if (!(Type & ACPI_FORMAT_LEFT))
676 while (--Width > 0)
678 Pos = AcpiUtBoundStringOutput (Pos, End, ' ');
682 c = (char) va_arg (Args, int);
683 Pos = AcpiUtBoundStringOutput (Pos, End, c);
685 while (--Width > 0)
687 Pos = AcpiUtBoundStringOutput (Pos, End, ' ');
689 continue;
691 case 's':
693 s = va_arg (Args, char *);
694 if (!s)
696 s = "<NULL>";
698 Length = (INT32) AcpiUtBoundStringLength (s, Precision);
699 if (!(Type & ACPI_FORMAT_LEFT))
701 while (Length < Width--)
703 Pos = AcpiUtBoundStringOutput (Pos, End, ' ');
707 for (i = 0; i < Length; ++i)
709 Pos = AcpiUtBoundStringOutput (Pos, End, *s);
710 ++s;
713 while (Length < Width--)
715 Pos = AcpiUtBoundStringOutput (Pos, End, ' ');
717 continue;
719 case 'o':
721 Base = 8;
722 break;
724 case 'X':
726 Type |= ACPI_FORMAT_UPPER;
727 /* FALLTHROUGH */
729 case 'x':
731 Base = 16;
732 break;
734 case 'd':
735 case 'i':
737 Type |= ACPI_FORMAT_SIGN;
739 case 'u':
741 break;
743 case 'p':
745 if (Width == -1)
747 Width = 2 * sizeof (void *);
748 Type |= ACPI_FORMAT_ZERO;
751 p = va_arg (Args, void *);
752 Pos = AcpiUtFormatNumber (
753 Pos, End, ACPI_TO_INTEGER (p), 16, Width, Precision, Type);
754 continue;
756 default:
758 Pos = AcpiUtBoundStringOutput (Pos, End, '%');
759 if (*Format)
761 Pos = AcpiUtBoundStringOutput (Pos, End, *Format);
763 else
765 --Format;
767 continue;
770 if (Qualifier == 'L')
772 Number = va_arg (Args, UINT64);
773 if (Type & ACPI_FORMAT_SIGN)
775 Number = (INT64) Number;
778 else if (Qualifier == 'l')
780 Number = va_arg (Args, unsigned long);
781 if (Type & ACPI_FORMAT_SIGN)
783 Number = (INT32) Number;
786 else if (Qualifier == 'h')
788 Number = (UINT16) va_arg (Args, int);
789 if (Type & ACPI_FORMAT_SIGN)
791 Number = (INT16) Number;
794 else
796 Number = va_arg (Args, unsigned int);
797 if (Type & ACPI_FORMAT_SIGN)
799 Number = (signed int) Number;
803 Pos = AcpiUtFormatNumber (Pos, End, Number, Base,
804 Width, Precision, Type);
807 if (Size > 0)
809 if (Pos < End)
811 *Pos = '\0';
813 else
815 End[-1] = '\0';
819 return ((int) ACPI_PTR_DIFF (Pos, String));
823 /*******************************************************************************
825 * FUNCTION: snprintf
827 * PARAMETERS: String - String with boundary
828 * Size - Boundary of the string
829 * Format, ... - Standard printf format
831 * RETURN: Number of bytes actually written.
833 * DESCRIPTION: Formatted output to a string.
835 ******************************************************************************/
838 snprintf (
839 char *String,
840 ACPI_SIZE Size,
841 const char *Format,
842 ...)
844 va_list Args;
845 int Length;
848 va_start (Args, Format);
849 Length = vsnprintf (String, Size, Format, Args);
850 va_end (Args);
852 return (Length);
856 /*******************************************************************************
858 * FUNCTION: sprintf
860 * PARAMETERS: String - String with boundary
861 * Format, ... - Standard printf format
863 * RETURN: Number of bytes actually written.
865 * DESCRIPTION: Formatted output to a string.
867 ******************************************************************************/
870 sprintf (
871 char *String,
872 const char *Format,
873 ...)
875 va_list Args;
876 int Length;
879 va_start (Args, Format);
880 Length = vsnprintf (String, ACPI_UINT32_MAX, Format, Args);
881 va_end (Args);
883 return (Length);
887 #ifdef ACPI_APPLICATION
888 /*******************************************************************************
890 * FUNCTION: vprintf
892 * PARAMETERS: Format - Standard printf format
893 * Args - Argument list
895 * RETURN: Number of bytes actually written.
897 * DESCRIPTION: Formatted output to stdout using argument list pointer.
899 ******************************************************************************/
902 vprintf (
903 const char *Format,
904 va_list Args)
906 ACPI_CPU_FLAGS Flags;
907 int Length;
910 Flags = AcpiOsAcquireLock (AcpiGbl_PrintLock);
911 Length = vsnprintf (AcpiGbl_PrintBuffer,
912 sizeof (AcpiGbl_PrintBuffer), Format, Args);
914 (void) fwrite (AcpiGbl_PrintBuffer, Length, 1, ACPI_FILE_OUT);
915 AcpiOsReleaseLock (AcpiGbl_PrintLock, Flags);
917 return (Length);
921 /*******************************************************************************
923 * FUNCTION: printf
925 * PARAMETERS: Format, ... - Standard printf format
927 * RETURN: Number of bytes actually written.
929 * DESCRIPTION: Formatted output to stdout.
931 ******************************************************************************/
934 printf (
935 const char *Format,
936 ...)
938 va_list Args;
939 int Length;
942 va_start (Args, Format);
943 Length = vprintf (Format, Args);
944 va_end (Args);
946 return (Length);
950 /*******************************************************************************
952 * FUNCTION: vfprintf
954 * PARAMETERS: File - File descriptor
955 * Format - Standard printf format
956 * Args - Argument list
958 * RETURN: Number of bytes actually written.
960 * DESCRIPTION: Formatted output to a file using argument list pointer.
962 ******************************************************************************/
965 vfprintf (
966 FILE *File,
967 const char *Format,
968 va_list Args)
970 ACPI_CPU_FLAGS Flags;
971 int Length;
974 Flags = AcpiOsAcquireLock (AcpiGbl_PrintLock);
975 Length = vsnprintf (AcpiGbl_PrintBuffer,
976 sizeof (AcpiGbl_PrintBuffer), Format, Args);
978 (void) fwrite (AcpiGbl_PrintBuffer, Length, 1, File);
979 AcpiOsReleaseLock (AcpiGbl_PrintLock, Flags);
981 return (Length);
985 /*******************************************************************************
987 * FUNCTION: fprintf
989 * PARAMETERS: File - File descriptor
990 * Format, ... - Standard printf format
992 * RETURN: Number of bytes actually written.
994 * DESCRIPTION: Formatted output to a file.
996 ******************************************************************************/
999 fprintf (
1000 FILE *File,
1001 const char *Format,
1002 ...)
1004 va_list Args;
1005 int Length;
1008 va_start (Args, Format);
1009 Length = vfprintf (File, Format, Args);
1010 va_end (Args);
1012 return (Length);
1014 #endif