Lines Matching refs:buffer
114 * buffer - Buffer for returned path
124 acpi_get_name(acpi_handle handle, u32 name_type, struct acpi_buffer *buffer)
134 status = acpi_ut_validate_buffer(buffer);
153 status = acpi_ns_handle_to_pathname(handle, buffer,
160 status = acpi_ns_handle_to_name(handle, buffer);
213 * Note: Allocates the return buffer, must be freed by the caller.
326 * return buffer
376 * Create a pointer to the string area of the return buffer.
390 * Copy the HID, UID, and CIDs to the return buffer. The variable-length
391 * strings are copied to the reserved area at the end of the buffer.
465 * PARAMETERS: buffer - An ACPI table containing one control method
471 * input buffer must contain a valid DSDT or SSDT containing a
475 acpi_status acpi_install_method(u8 *buffer)
478 ACPI_CAST_PTR(struct acpi_table_header, buffer);
492 if (!buffer) {
505 parser_state.aml = buffer + sizeof(struct acpi_table_header);
565 /* Copy the method AML to the local buffer */
591 * Flag indicates AML buffer is dynamic, must be deleted later.