Lines Matching refs:Field

163     DT_FIELD                *Field,
169 DT_FIELD *Field,
175 DT_FIELD *Field,
202 DT_FIELD *Field, in DtCompileOneField() argument
214 DtCompileInteger (Buffer, Field, ByteLength, Flags); in DtCompileOneField()
219 DtCompileString (Buffer, Field, ByteLength); in DtCompileOneField()
224 Status = DtCompileUuid (Buffer, Field, ByteLength); in DtCompileOneField()
234 DtCompileBuffer (Buffer, Field->Value, Field, ByteLength); in DtCompileOneField()
239 DtCompileUnicode (Buffer, Field, ByteLength); in DtCompileOneField()
248 DtFatal (ASL_MSG_COMPILER_INTERNAL, Field, "Invalid field type"); in DtCompileOneField()
271 DT_FIELD *Field, in DtCompileString() argument
277 Length = strlen (Field->Value); in DtCompileString()
285 ByteLength, Length, (ASL_MSG_BUFFER_SIZE / 2), Field->Value); in DtCompileString()
286 DtError (ASL_ERROR, ASL_MSG_STRING_LENGTH, Field, AslGbl_MsgBuffer); in DtCompileString()
290 memcpy (Buffer, Field->Value, Length); in DtCompileString()
314 DT_FIELD *Field, in DtCompileUnicode() argument
323 AsciiString = Field->Value; in DtCompileUnicode()
353 DT_FIELD *Field, in DtCompileUuid() argument
360 InString = Field->Value; in DtCompileUuid()
365 sprintf (AslGbl_MsgBuffer, "%s", Field->Value); in DtCompileUuid()
366 DtNameError (ASL_ERROR, ASL_MSG_INVALID_UUID, Field, AslGbl_MsgBuffer); in DtCompileUuid()
396 DT_FIELD *Field, in DtCompileInteger() argument
409 DtFatal (ASL_MSG_COMPILER_INTERNAL, Field, in DtCompileInteger()
416 Status = DtResolveIntegerExpression (Field, &Value); in DtCompileInteger()
431 if (!strcmp (Field->Name, "Reserved")) in DtCompileInteger()
437 DtError (ASL_ERROR, ASL_MSG_RESERVED_FIELD, Field, in DtCompileInteger()
444 DtError (ASL_ERROR, ASL_MSG_RESERVED_FIELD, Field, in DtCompileInteger()
454 DtError (ASL_ERROR, ASL_MSG_ZERO_VALUE, Field, NULL); in DtCompileInteger()
469 DtError (ASL_ERROR, ASL_MSG_INTEGER_SIZE, Field, AslGbl_MsgBuffer); in DtCompileInteger()
566 DT_FIELD *Field, in DtCompileBuffer() argument
584 DtError (ASL_ERROR, ASL_MSG_BUFFER_LIST, Field, AslGbl_MsgBuffer); in DtCompileBuffer()
597 DtError (ASL_ERROR, ASL_MSG_BUFFER_ELEMENT, Field, Substring); in DtCompileBuffer()
606 DtError (ASL_ERROR, ASL_MSG_BUFFER_ELEMENT, Field, Substring); in DtCompileBuffer()
634 DT_FIELD *Field, in DtCompileFlag() argument
642 Value = AcpiUtImplicitStrtoul64 (Field->Value); in DtCompileFlag()
723 DtFatal (ASL_MSG_COMPILER_INTERNAL, Field, "Invalid flag opcode"); in DtCompileFlag()
732 DtError (ASL_ERROR, ASL_MSG_FLAG_VALUE, Field, AslGbl_MsgBuffer); in DtCompileFlag()
763 DT_FIELD *Field = UtFieldCacheCalloc (); in DtCreateField() local
766 Field->StringLength = 0; in DtCreateField()
769 Field->Name = in DtCreateField()
775 Field->StringLength = strlen (FieldValue->Value); in DtCreateField()
776 Field->Value = in DtCreateField()
777 strcpy (UtLocalCacheCalloc (Field->StringLength + 1), FieldValue->Value); in DtCreateField()
780 Field->Line = FieldValue->Line; in DtCreateField()
781 Field->ByteOffset = Offset; in DtCreateField()
782 Field->NameColumn = FieldKey->Column; in DtCreateField()
783 Field->Column = FieldValue->Column; in DtCreateField()
784 DtLinkField (Field); in DtCreateField()
834 DT_FIELD *Field) in DtLinkField() argument
850 Prev->Next = Field; in DtLinkField()
854 AslGbl_FieldList = Field; in DtLinkField()