Lines Matching refs:Field
324 DT_FIELD *Field; in DtParseLine() local
436 Field = UtFieldCacheCalloc (); in DtParseLine()
437 Field->Name = Name; in DtParseLine()
438 Field->Value = Value; in DtParseLine()
439 Field->Line = Line; in DtParseLine()
440 Field->ByteOffset = Offset; in DtParseLine()
441 Field->NameColumn = NameColumn; in DtParseLine()
442 Field->Column = Column; in DtParseLine()
443 Field->StringLength = Length; in DtParseLine()
445 DtLinkField (Field); in DtParseLine()
1027 DT_FIELD *Field) in DtDumpFieldList() argument
1030 if (!AslGbl_DebugFlag || !Field) in DtDumpFieldList()
1039 while (Field) in DtDumpFieldList()
1043 Field->Line, Field->ByteOffset, Field->NameColumn, in DtDumpFieldList()
1044 Field->Column, Field->TableOffset, Field->Flags, in DtDumpFieldList()
1045 Field->Name, Field->Value); in DtDumpFieldList()
1047 Field = Field->Next; in DtDumpFieldList()
1150 DT_FIELD *Field, in DtWriteFieldToListing() argument
1156 if (!AslGbl_ListingFlag || !Field) in DtWriteFieldToListing()
1164 FlSeekFile (ASL_FILE_INPUT, Field->ByteOffset); in DtWriteFieldToListing()
1178 Field->Column-4, Field->Name, Field->Value); in DtWriteFieldToListing()
1180 if (strlen (Field->Value) > 64) in DtWriteFieldToListing()
1183 (UINT32) strlen (Field->Value)); in DtWriteFieldToListing()
1190 DtDumpBuffer (ASL_FILE_LISTING_OUTPUT, Buffer, Field->TableOffset, Length); in DtWriteFieldToListing()