Lines Matching defs:File
3 * Module Name: adfile - Application-level disassembler file support routines
22 * copy of the source code appearing in this file ("Covered Code") an
48 * contain a file documenting the changes Licensee made to create that Covered
49 * Code and the date of any change. Licensee must include in that file the
219 * PARAMETERS: Filename - name of file
225 * DESCRIPTION: Open a file and write out a single buffer
235 FILE *File;
239 File = fopen (Filename, "wb");
240 if (!File)
242 printf ("Could not open file %s\n", Filename);
246 Actual = fwrite (Buffer, 1, (size_t) Length, File);
249 printf ("Could not write to file %s\n", Filename);
252 fclose (File);
268 * DESCRIPTION: Dump the loaded tables to a file (or files)
371 * PARAMETERS: InputFilename - The user-specified ASL source file to be
463 * PARAMETERS: FilePathname - File path to be split
465 * RETURN: The extracted base name of the file, in upper case
467 * DESCRIPTION: Extract the file base name (the file name with no extension)