Lines Matching defs:Name
3 * Module Name: ahasl - ASL operator decoding for acpihelp utility
174 * PARAMETERS: Name - Name or prefix for an ASL keyword.
179 * DESCRIPTION: Find all ASL keywords that match the input Name or name
186 char *Name)
192 AcpiUtStrupr (Name);
194 for (Keyword = Gbl_AslKeywordInfo; Keyword->Name; Keyword++)
196 if (!Name || (Name[0] == '*'))
205 strcpy (Gbl_Buffer, Keyword->Name);
208 if (strstr (Gbl_Buffer, Name) == Gbl_Buffer)
217 printf ("%s, no matching ASL keywords\n", Name);
242 printf ("%22s: %s\n", Op->Name, Op->Description);
259 * PARAMETERS: Name - Name or prefix for an ASL operator.
264 * DESCRIPTION: Find all ASL operators that match the input Name or name
272 char *Name)
277 MatchCount = AhFindAslOperators (Name);
280 AhFindAmlOpcode (Name);
289 * PARAMETERS: Name - Name or prefix for an ASL operator.
294 * DESCRIPTION: Find all ASL operators that match the input Name or name
301 char *Name)
307 AcpiUtStrupr (Name);
311 for (Operator = Gbl_AslOperatorInfo; Operator->Name; Operator++)
313 if (!Name || (Name[0] == '*'))
322 strcpy (Gbl_Buffer, Operator->Name);
325 if (strstr (Gbl_Buffer, Name) == Gbl_Buffer)
334 printf ("%s, no matching ASL operators\n", Name);
361 printf ("%16s: %s\n", Op->Name, Op->Description);