Lines Matching defs:Buffer
176 * BufferOffset - Offset of buffer from Table above
177 * Length - Length of the buffer
178 * AbsoluteOffset - Offset of buffer in the main ACPI table
179 * Header - Name of the buffer field (printed on the
184 * DESCRIPTION: Format the contents of an arbitrary length data buffer (in the
197 UINT8 *Buffer;
208 Buffer = ACPI_CAST_PTR (UINT8, Table) + BufferOffset;
233 AcpiOsPrintf ("%.02X ", Buffer[(ACPI_SIZE) i + j]);
255 BufChar = Buffer[(ACPI_SIZE) i + j];
283 * BufferOffset - Offset of buffer from Table above
284 * ByteLength - Length of the buffer
288 * DESCRIPTION: Validate and dump the contents of a buffer that contains
290 * appears that the data is not unicode, the buffer is dumped
301 UINT8 *Buffer;
306 Buffer = ((UINT8 *) Table) + BufferOffset;
313 if (!isprint (Buffer[i]))
323 if (Buffer[i])
329 /* Dump the buffer as a normal string */
334 AcpiOsPrintf ("%c", Buffer[i]);