Lines Matching defs:String
417 * PARAMETERS: StringSize - Size of string to be created. Does not
421 * RETURN: Pointer to a new String object
423 * DESCRIPTION: Create a fully initialized string object
432 char *String;
438 /* Create a new String object */
447 * Allocate the actual string buffer -- (Size + 1) for NULL terminator.
450 String = ACPI_ALLOCATE_ZEROED (StringSize + 1);
451 if (!String)
460 /* Complete string object initialization */
462 StringDesc->String.Pointer = String;
463 StringDesc->String.Length = (UINT32) StringSize;
465 /* Return the new string descriptor */
671 Length += (ACPI_SIZE) InternalObject->String.Length + 1;