Home | History | Annotate | Download | only in resources

Lines Matching defs:Buffer

190     ACPI_BUFFER             *Buffer,
199 * Buffer - Pointer to a data buffer
211 ACPI_BUFFER *Buffer,
241 * Validate the user buffer object
243 * if there is a non-zero buffer length we also need a valid pointer in
244 * the buffer. If it's a zero buffer length, we'll be returning the
245 * needed buffer size (later), so keep going.
247 Status = AcpiUtValidateBuffer (Buffer);
263 * RetBuffer - Pointer to a buffer to receive the
270 * desired bus. The routine table is placed in the buffer pointed
314 * RetBuffer - Pointer to a buffer to receive the
321 * the desired device. The resource data is placed in the buffer
365 * RetBuffer - Pointer to a buffer to receive the
373 * buffer pointed to by the RetBuffer variable.
413 * InBuffer - Pointer to a buffer containing the
421 * the buffer pointed to by the InBuffer variable.
437 /* Validate the buffer, don't allow zero length */
467 * InBuffer - Pointer to a buffer containing the
475 * the buffer pointed to by the InBuffer variable. Uses the
512 * Out - Pointer to the users's return buffer
518 * copy it to the address64 return buffer. This saves the
612 Info.Buffer = RetBuffer;
649 ACPI_BUFFER *Buffer;
676 /* Validate/Allocate/Clear caller buffer */
678 Buffer = Info->Buffer;
679 Status = AcpiUtInitializeBuffer (Buffer, Resource->Length);
687 memcpy (Buffer->Pointer, Resource, Resource->Length);
688 Buffer->Length = Resource->Length;
701 * PARAMETERS: Buffer - Formatted buffer returned by one of the
715 ACPI_BUFFER *Buffer,
729 if (!Buffer || !Buffer->Pointer || !UserFunction)
734 /* Buffer contains the resource list and length */
736 Resource = ACPI_CAST_PTR (ACPI_RESOURCE, Buffer->Pointer);
738 ACPI_RESOURCE, Buffer->Pointer, Buffer->Length);
740 /* Walk the resource list until the EndTag is found (or buffer end) */
819 ACPI_BUFFER Buffer;
838 Buffer.Length = ACPI_ALLOCATE_LOCAL_BUFFER;
839 Status = AcpiRsGetMethodData (DeviceHandle, __UNCONST(Name), &Buffer);
847 Status = AcpiWalkResourceBuffer (&Buffer, UserFunction, Context);
848 ACPI_FREE (Buffer.Pointer);