Lines Matching refs:String
173 * DESCRIPTION: Attempt to convert a String/Buffer object to an Integer.
192 /* String-to-Integer conversion */
194 Status = AcpiUtStrtoul64 (OriginalObject->String.Pointer, &Value);
244 * DESCRIPTION: Attempt to convert a Integer/Buffer object to a String.
262 * Integer-to-String conversion. Commonly, convert
263 * an integer of value 0 to a NULL string. The last element of
268 /* Allocate a new NULL string object */
289 * Buffer-to-String conversion. Use a ToString
291 * example of this is the _BIF method, where the string data from
301 /* Allocate a new string object */
310 * Copy the raw buffer data with no transform. String is already NULL
313 memcpy (NewObject->String.Pointer,
336 * DESCRIPTION: Attempt to convert a Integer/String/Package object to a Buffer.
372 /* String-to-Buffer conversion. Simple data copy */
375 (OriginalObject->String.Length);
382 OriginalObject->String.Pointer, OriginalObject->String.Length);
443 * OriginalObject - ASCII String Object to be converted
448 * DESCRIPTION: Attempt to convert a String object to a Unicode string Buffer.
484 * The original object is an ASCII string. Convert this string to
487 AsciiString = OriginalObject->String.Pointer;
488 UnicodeLength = (OriginalObject->String.Length * 2) + 2;
502 for (i = 0; i < OriginalObject->String.Length; i++)
631 Status = AcpiNsInternalizeName (OriginalObject->String.Pointer, &Name);
648 OriginalObject->String.Pointer, Status);