Home | History | Annotate | Download | only in utilities

Lines Matching refs:Format

533  *              Format              - Standard printf format
546 const char *Format,
569 for (; *Format; ++Format)
571 if (*Format != '%')
573 Pos = AcpiUtBoundStringOutput (Pos, End, *Format);
584 ++Format;
585 if (*Format == '#')
589 else if (*Format == '0')
593 else if (*Format == '+')
597 else if (*Format == ' ')
601 else if (*Format == '-')
615 if (isdigit ((int) *Format))
617 Format = AcpiUtScanNumber (Format, &Number);
620 else if (*Format == '*')
622 ++Format;
634 if (*Format == '.')
636 ++Format;
637 if (isdigit ((int) *Format))
639 Format = AcpiUtScanNumber (Format, &Number);
642 else if (*Format == '*')
644 ++Format;
657 if (*Format == 'h' || *Format == 'l' || *Format == 'L')
659 Qualifier = *Format;
660 ++Format;
662 if (Qualifier == 'l' && *Format == 'l')
665 ++Format;
669 switch (*Format)
763 if (*Format)
765 Pos = AcpiUtBoundStringOutput (Pos, End, *Format);
769 --Format;
833 * Format, ... - Standard printf format
845 const char *Format,
852 va_start (Args, Format);
853 Length = vsnprintf (String, Size, Format, Args);
865 * Format, ... - Standard printf format
876 const char *Format,
883 va_start (Args, Format);
884 Length = vsnprintf (String, ACPI_UINT32_MAX, Format, Args);
896 * PARAMETERS: Format - Standard printf format
907 const char *Format,
916 sizeof (AcpiGbl_PrintBuffer), Format, Args);
929 * PARAMETERS: Format, ... - Standard printf format
939 const char *Format,
946 va_start (Args, Format);
947 Length = vprintf (Format, Args);
959 * Format - Standard printf format
971 const char *Format,
980 sizeof (AcpiGbl_PrintBuffer), Format, Args);
994 * Format, ... - Standard printf format
1005 const char *Format,
1012 va_start (Args, Format);
1013 Length = vfprintf (File, Format, Args);