Lines Matching refs:Field
167 DT_FIELD *Field);
314 DT_FIELD *Field) in DtLinkField() argument
330 Prev->Next = Field; in DtLinkField()
334 Gbl_FieldList = Field; in DtLinkField()
367 DT_FIELD *Field; in DtParseLine() local
479 Field = UtFieldCacheCalloc (); in DtParseLine()
480 Field->Name = Name; in DtParseLine()
481 Field->Value = Value; in DtParseLine()
482 Field->Line = Line; in DtParseLine()
483 Field->ByteOffset = Offset; in DtParseLine()
484 Field->NameColumn = NameColumn; in DtParseLine()
485 Field->Column = Column; in DtParseLine()
486 Field->StringLength = Length; in DtParseLine()
488 DtLinkField (Field); in DtParseLine()
1048 DT_FIELD *Field) in DtDumpFieldList() argument
1051 if (!Gbl_DebugFlag || !Field) in DtDumpFieldList()
1060 while (Field) in DtDumpFieldList()
1064 Field->Line, Field->ByteOffset, Field->NameColumn, in DtDumpFieldList()
1065 Field->Column, Field->TableOffset, Field->Flags, in DtDumpFieldList()
1066 Field->Name, Field->Value); in DtDumpFieldList()
1068 Field = Field->Next; in DtDumpFieldList()
1171 DT_FIELD *Field, in DtWriteFieldToListing() argument
1177 if (!Gbl_ListingFlag || !Field) in DtWriteFieldToListing()
1185 FlSeekFile (ASL_FILE_INPUT, Field->ByteOffset); in DtWriteFieldToListing()
1199 Field->Column-4, Field->Name, Field->Value); in DtWriteFieldToListing()
1201 if (strlen (Field->Value) > 64) in DtWriteFieldToListing()
1204 strlen (Field->Value)); in DtWriteFieldToListing()
1211 DtDumpBuffer (ASL_FILE_LISTING_OUTPUT, Buffer, Field->TableOffset, Length); in DtWriteFieldToListing()