Home | History | Annotate | Download | only in executer

Lines Matching defs:Buffer

168  *              Buffer              - Where the return data is returned
180 void *Buffer)
205 ObjDesc, 0, (UINT64 *) Buffer, ACPI_READ);
235 void *Buffer;
260 Buffer = &SourceDesc->Integer.Value;
269 ObjDesc, 0, (UINT64 *) Buffer, ACPI_WRITE);
305 * This is an SMBus, GSBus or IPMI read. We must create a buffer to
311 * Common buffer format:
312 * Status; (Byte 0 of the data buffer)
313 * Length; (Byte 1 of the data buffer)
314 * Data[x-1]: (Bytes 2-x of the arbitrary length data buffer)
350 /* Add header length to get the full size of the buffer */
372 /* Create the local transfer buffer that is returned to the caller */
387 ACPI_CAST_PTR (UINT64, BufferDesc->Buffer.Pointer), Function);
419 void *Buffer;
430 * field mechanism and handoff the buffer directly to the handler.
431 * For these address spaces, the buffer is bidirectional; on a
432 * write, return data is returned in the same buffer.
434 * Source must be a buffer of sufficient size, these are fixed size:
440 * Common buffer format:
441 * Status; (Byte 0 of the data buffer)
442 * Length; (Byte 1 of the data buffer)
443 * Data[x-1]: (Bytes 2-x of the arbitrary length data buffer)
449 "Buffer, found type %s",
481 /* Add header length to get the full size of the buffer */
503 /* Create the transfer/bidirectional/return buffer */
511 /* Copy the input buffer data to the transfer buffer */
513 Buffer = BufferDesc->Buffer.Pointer;
514 DataLength = ACPI_MIN (BufferLength, SourceDesc->Buffer.Length);
515 memcpy (Buffer, SourceDesc->Buffer.Pointer, DataLength);
523 * same buffer)
526 ObjDesc, 0, (UINT64 *) Buffer, Function);