Lines Matching refs:Name
95 for (i = 0; Arguments[i].Name; i++) in AcpiDbMatchArgument()
97 if (strstr (Arguments[i].Name, UserArgument) == Arguments[i].Name) in AcpiDbMatchArgument()
263 char *Name) in AcpiDbPrepNamestring() argument
266 if (!Name) in AcpiDbPrepNamestring()
271 AcpiUtStrupr (Name); in AcpiDbPrepNamestring()
275 if (*Name == '/') in AcpiDbPrepNamestring()
277 *Name = '\\'; in AcpiDbPrepNamestring()
282 if (ACPI_IS_ROOT_PREFIX (*Name)) in AcpiDbPrepNamestring()
284 Name++; in AcpiDbPrepNamestring()
289 while (*Name) in AcpiDbPrepNamestring()
291 if ((*Name == '/') || in AcpiDbPrepNamestring()
292 (*Name == '\\')) in AcpiDbPrepNamestring()
294 *Name = '.'; in AcpiDbPrepNamestring()
297 Name++; in AcpiDbPrepNamestring()
319 char *Name) in AcpiDbLocalNsLookup() argument
326 AcpiDbPrepNamestring (Name); in AcpiDbLocalNsLookup()
330 Status = AcpiNsInternalizeName (Name, &InternalPath); in AcpiDbLocalNsLookup()
333 AcpiOsPrintf ("Invalid namestring: %s\n", Name); in AcpiDbLocalNsLookup()
347 Name, AcpiFormatException (Status)); in AcpiDbLocalNsLookup()