Lines Matching defs:File
3 * Module Name: aslfileio - File I/O support
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
163 * PARAMETERS: FileId - Index into file info array
190 * PARAMETERS: FileId - Index into file info array
191 * Filename - file pathname to open
196 * DESCRIPTION: Open a file.
207 FILE *File;
213 File = fopen (Filename, Mode);
214 if (!File)
220 AslGbl_Files[FileId].Handle = File;
228 * PARAMETERS: FileId - Index into file info array
230 * RETURN: File Size
232 * DESCRIPTION: Get current file size. Uses common seek-to-EOF function.
233 * File must be open. Aborts compiler on error.
258 * PARAMETERS: FileId - Index into file info array
264 * DESCRIPTION: Read data from an open file.
285 /* End-of-file, just return error */
302 * PARAMETERS: FileId - Index into file info array
308 * DESCRIPTION: Write data to an open file.
333 /* Duplicate the output to the user preprocessor (.i) file */
350 * PARAMETERS: FileId - Index into file info array
356 * DESCRIPTION: Formatted write to an open file.
385 * Duplicate the output to the user preprocessor (.i) file,
411 * PARAMETERS: FileId - Index into file info array
412 * Offset - Absolute byte offset in file
442 * PARAMETERS: FileId - Index into file info array
446 * DESCRIPTION: Close an open file. Aborts compiler on error
480 * PARAMETERS: FileId - Index into file info array
484 * DESCRIPTION: Delete a file.
502 printf ("%s (%s file) ",