Lines Matching defs:Buffer
178 char *Buffer = NULL;
193 * either a String or a Buffer, so just use its type.
209 * If the index is beyond the length of the String/Buffer, or if the
210 * requested length is zero, return a zero-length String/Buffer
217 /* Truncate request if larger than the actual String/Buffer */
233 Buffer = ACPI_ALLOCATE_ZEROED ((ACPI_SIZE) Length + 1);
234 if (!Buffer)
247 /* Allocate a new buffer for the Buffer */
249 Buffer = ACPI_ALLOCATE_ZEROED (Length);
250 if (!Buffer)
264 if (Buffer)
268 memcpy (Buffer,
272 /* Set the length of the new String/Buffer */
274 ReturnDesc->String.Pointer = Buffer;
279 ReturnDesc->Buffer.Flags |= AOPOBJ_DATA_VALID;