Lines Matching defs:buffer
66 * parse it from the Netfn command buffer. It is so complex
78 /* tx/rx data . And copy it from/to ACPI object buffer */
86 /* IPMI request/response buffer per ACPI 4.0, sec 5.5.2.4.3.2 */
245 struct acpi_ipmi_buffer *buffer;
261 * It points to the IPMI request message buffer
263 buffer = (struct acpi_ipmi_buffer *)value;
266 if (buffer->length > ACPI_IPMI_MAX_MSG_LENGTH) {
269 buffer->length);
272 msg->data_len = buffer->length;
273 memcpy(tx_msg->data, buffer->data, msg->data_len);
279 * the IPMI request message buffer to get the IPMB address.
300 struct acpi_ipmi_buffer *buffer;
306 buffer = (struct acpi_ipmi_buffer *)value;
312 buffer->status = msg->msg_done;
320 buffer->length = msg->rx_len;
321 memcpy(buffer->data, msg->data, msg->rx_len);
406 /* copy the response data to Rx_data buffer */
516 * @value : it is an in/out parameter. It points to the IPMI message buffer.