Home | History | Annotate | Download | only in compiler

Lines Matching refs:Filename

261     Status = FlIsFileAsciiSource (Info->Filename, FALSE);
301 Info->Handle = fopen (Info->Filename, "rb");
305 Info->Filename);
369 AslGbl_Files[ASL_FILE_INPUT].Filename, AslGbl_OutputFilenamePrefix,
370 &AslGbl_Files[ASL_FILE_INPUT].Filename);
385 * AslGbl_Files[ASL_FILE_INPUT].Filename was replaced with the
391 AslGbl_Files[ASL_FILE_INPUT].Filename);
403 * PARAMETERS: Filename - Name of the file
413 char *Filename)
427 * files and the optional AML filename embedded in the input file
430 Status = FlSplitInputPathname (Filename, &AslGbl_DirectoryPath, NULL);
442 Status = FlInitOneFile(Filename);
448 /* Take a copy of the input filename, convert any backslashes */
450 AslGbl_Files[ASL_FILE_INPUT].Filename =
451 UtLocalCacheCalloc (strlen (Filename) + 1);
453 strcpy (AslGbl_Files[ASL_FILE_INPUT].Filename, Filename);
454 UtConvertBackslashes (AslGbl_Files[ASL_FILE_INPUT].Filename);
461 Status = FlOpenInputFile (AslGbl_Files[ASL_FILE_INPUT].Filename);
482 * If -p not specified, we will use the input filename as the
483 * output filename prefix
487 AslGbl_OutputFilenamePrefix = AslGbl_Files[ASL_FILE_INPUT].Filename;