Home | History | Annotate | Download | only in common

Lines Matching defs:Filename

167     char                    *Filename,
183 * DESCRIPTION: Build an output filename from an ACPI table ID string
219 * PARAMETERS: Filename - name of file
231 char *Filename,
239 File = fopen (Filename, "wb");
242 printf ("Could not open file %s\n", Filename);
249 printf ("Could not write to file %s\n", Filename);
279 char *Filename;
282 Filename = AdGenerateFilename (TableName, OemTableId);
283 AdWriteBuffer (Filename, (char *) Table, Length);
285 AcpiOsPrintf ("Table [%s] written to \"%s\"\n", TableName, Filename);
293 * PARAMETERS: InputFilename - Original ASL source filename
296 * RETURN: New filename containing the original base + the new suffix
298 * DESCRIPTION: Generate a new filename from the ASL source filename and a new
314 * Copy the original filename to a new buffer. Leave room for the worst
321 /* Try to find the last dot in the filename */
375 * OutFilename - Where the filename part is returned
379 * DESCRIPTION: Split the input path into a directory and filename part
381 * 2) Filename part used to generate output filenames
393 char *Filename;
406 /* Get the path to the input filename's directory */
426 /* Extract the simple filename */
430 Filename = FlStrdup (DirectoryPath);
435 Filename = FlStrdup (Substring + 1);
439 if (!Filename)
451 *OutFilename = Filename;
491 /* Extract the full filename (base + extension) */
502 /* Remove the filename extension if present */