Lines Matching defs:NameSeg
169 char *NameSeg,
932 * PARAMETERS: NameSeg - Input nameseg
933 * PaddedNameSeg - Output padded nameseg
935 * RETURN: Padded nameseg.
937 * DESCRIPTION: Pads a NameSeg with underscores if necessary to form a full
944 char *NameSeg,
952 if (*NameSeg)
954 *PaddedNameSeg = *NameSeg;
955 NameSeg++;
974 * RETURN: None; Sets the NameSeg field in parent node
976 * DESCRIPTION: Extract the last nameseg of the ExternalName and store it
977 * in the NameSeg field of the Op.
986 char *NameSeg;
997 NameSeg = strrchr (Name, '.');
998 if (NameSeg)
1000 /* Found last dot, we have also found the final nameseg */
1002 NameSeg++;
1003 UtPadNameWithUnderscores (NameSeg, PaddedNameSeg);
1007 /* No dots in the namepath, there is only a single nameseg. */
1016 /* Remaining string should be one single nameseg */
1021 ACPI_COPY_NAMESEG (Op->Asl.NameSeg, PaddedNameSeg);
1056 /* Last nameseg of the path */