Lines Matching refs:String
165 * PARAMETERS: String - Null terminated ASCII string
171 * DESCRIPTION: Dump an ASCII string with support for ACPI-defined escape
178 char *String,
184 if (!String)
186 AcpiOsPrintf ("<\"NULL STRING PTR\">");
191 for (i = 0; (i < MaxLength) && String[i]; i++)
195 switch (String[i])
236 AcpiOsPrintf ("\\%c", (int) String[i]);
243 if (isprint ((int) String[i]))
247 AcpiOsPrintf ("%c", (int) String[i]);
253 AcpiOsPrintf ("\\x%2.2X", (INT32) String[i]);
261 if (i == MaxLength && String[i])
356 * PARAMETERS: Pathname - File pathname string to be converted
361 * the entire input file pathname string.