Home | History | Annotate | Download | only in compiler

Lines Matching defs:Field

324     DT_FIELD                *Field;
371 * There are two column values. One for the field name,
372 * and one for the field value.
432 /* Create a new field object only if we have a valid value field */
436 Field = UtFieldCacheCalloc ();
437 Field->Name = Name;
438 Field->Value = Value;
439 Field->Line = Line;
440 Field->ByteOffset = Offset;
441 Field->NameColumn = NameColumn;
442 Field->Column = Column;
443 Field->StringLength = Length;
445 DtLinkField (Field);
447 /* Else -- Ignore this field, it has no valid data */
811 * DESCRIPTION: Scan source file, link all field names and values
1017 * PARAMETERS: Field - Root field
1021 * DESCRIPTION: Dump the entire field list
1027 DT_FIELD *Field)
1030 if (!AslGbl_DebugFlag || !Field)
1039 while (Field)
1043 Field->Line, Field->ByteOffset, Field->NameColumn,
1044 Field->Column, Field->TableOffset, Field->Flags,
1045 Field->Name, Field->Value);
1047 Field = Field->Next;
1138 * Field - Field
1143 * DESCRIPTION: Write one field to the listing file (if listing is enabled).
1150 DT_FIELD *Field,
1156 if (!AslGbl_ListingFlag || !Field)
1164 FlSeekFile (ASL_FILE_INPUT, Field->ByteOffset);
1178 Field->Column-4, Field->Name, Field->Value);
1180 if (strlen (Field->Value) > 64)
1183 (UINT32) strlen (Field->Value));
1188 /* Dump the hex data that will be output for this field */
1190 DtDumpBuffer (ASL_FILE_LISTING_OUTPUT, Buffer, Field->TableOffset, Length);