HomeSort by: relevance | last modified time | path
    Searched refs:File (Results 1 - 25 of 102) sorted by relevancy

1 2 3 4 5

  /src/lib/libcurses/PSD.doc/
life.c 86 * The input can also be from a file. The list is built after the
114 mvaddstr(0, 0, "File name: ");
  /src/sys/external/bsd/acpica/dist/tools/efihello/
efihello.c 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
184 ACPI_FILE File;
195 File = fopen (argv[1], "r");
196 if (!File)
205 File = stdin;
210 Result = fgets (LineBuffer, LINE_SIZE, File);
214 fclose (File);
229 fclose (File);
    [all...]
  /src/sys/external/bsd/acpica/dist/common/
cmfsize.c 3 * Module Name: cmfsize - Common get file size function
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
164 * PARAMETERS: File - Open file descriptor
166 * RETURN: File Size. On error, -1 (ACPI_UINT32_MAX)
168 * DESCRIPTION: Get the size of a file. Uses seek-to-EOF. File must be open.
169 * Does not disturb the current file pointer
    [all...]
acfileio.c 3 * Module Name: acfileio - Get ACPI tables from file
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
167 FILE *File,
216 * DESCRIPTION: Get all ACPI tables from within a single file.
229 FILE *File;
235 File = fopen (Filename, "rb")
    [all...]
adisasm.c 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
174 FILE *File,
181 FILE *File,
282 * OutToFile - TRUE if output should go to a file
301 FILE *File = NULL
    [all...]
adfile.c 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)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/test/profile/
instrprof-without-libc.c 41 FILE *File = fopen(argv[1], "w");
42 if (!File)
44 if (fwrite(Buffer, 1, Size, File) != Size)
46 return fclose(File);
instrprof-bufferio.c 14 ProfBufferIO *llvmCreateBufferIOInternal(FILE *File, uint32_t DefaultBufferSz);
28 FILE *File[4];
41 File[J] = fopen(argv[1 + J], "w");
42 if (!File[J])
45 BufferIO = llvmCreateBufferIOInternal(File[J], IOBufferSize[J]);
74 fclose(File[J]);
  /src/sys/external/bsd/acpica/dist/tools/acpidump/
apfiles.c 3 * Module Name: apfiles - File-related functions for acpidump utility
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
170 * DESCRIPTION: Query for file overwrite if it already exists.
210 * RETURN: Open file handle
212 * DESCRIPTION: Open a text output file for acpidump. Checks if file already
221 ACPI_FILE File;
224 /* If file exists, prompt for overwrite *
    [all...]
  /src/usr.bin/crunch/crunchgen/
mkskel.sh 8 /* File created via mkskel.sh */
  /src/sys/rump/fs/lib/libnofifovfs/
Makefile 5 COMMENT=File system null FIFO support
  /src/sys/external/bsd/acpica/dist/utilities/
utbuffer.c 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
351 * PARAMETERS: File - File descriptor
363 * DESCRIPTION: Generic dump buffer in both hex and ascii to a file.
369 ACPI_FILE File,
383 fprintf (File, "Null Buffer Pointer in DumpBuffer!\n");
398 fprintf (File, "%8.4X: ", (BaseOffset + i));
408 fprintf (File, "%*s", ((Display * 2) + 1), " ")
    [all...]
  /src/sys/arch/hpc/stand/hpcboot/
boot.h 41 class File;
58 File *_file; // FAT/FFS/via HTTP
load.h 41 class File;
56 File *_file;
74 virtual BOOL setFile(File *&file) { _file = file; return TRUE; }
85 static LoaderOps objectFormat(File &);
file.h 1 /* -*-C++-*- $NetBSD: file.h,v 1.6 2008/04/28 20:23:20 martin Exp $ */
40 class File {
48 File(Console *&cons) : _cons(cons) { /* NO-OP */ }
49 virtual ~File() { /* NO-OP */ }
62 class FileManager : public File {
67 ASCII_FLAG = 0x01, /* bit 0 set: file probably ascii text */
70 ORIG_NAME = 0x08, /* bit 3 set: original file name present */
71 COMMENT = 0x10, /* bit 4 set: file comment present */
78 int _z_eof; /* set if end of input file */
92 File *_file
    [all...]
file.cpp 1 /* -*-C++-*- $NetBSD: file.cpp,v 1.5 2008/04/28 20:23:20 martin Exp $ */
33 #include <file.h>
39 : File(cons)
41 // File System
64 File::_to_ascii(char *m, const TCHAR *w, size_t mlen)
  /src/sys/external/bsd/acpica/dist/tools/acpibin/
abcompare.c 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
315 FILE *File;
318 File = fopen (FilePath, "rb");
319 if (!File)
321 printf ("Could not open file %s\n", FilePath);
325 Actual = fread (&Header1, 1, sizeof (ACPI_TABLE_HEADER), File);
326 fclose (File);
    [all...]
  /src/sys/rump/dev/lib/libfss/
Makefile 7 COMMENT=File system snapshot device
  /src/sys/rump/fs/lib/libfifovfs/
Makefile 7 COMMENT=File system FIFO support
  /src/sys/rump/fs/lib/libmfs/
Makefile 7 COMMENT=Memory File System (in-memory FFS)
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
InstrProfilingFile.c 1 /*===- InstrProfilingFile.c - Write instrumentation to a file -------------===*\
5 |* This file is distributed under the University of Illinois Open Source
24 FILE *File = (FILE *)*WriterCtx;
26 if (fwrite(IOVecs[I].Data, IOVecs[I].ElmSize, IOVecs[I].NumElm, File) !=
34 llvmCreateBufferIOInternal(void *File, uint32_t BufferSz) {
37 return llvmCreateBufferIO(fileWriter, File, BufferSz);
40 static int writeFile(FILE *File) {
    [all...]
InstrProfilingInternal.h 5 |* This file is distributed under the University of Illinois Open Source
58 /* File handle. */
59 void *File;
71 ProfBufferIO *llvmCreateBufferIOInternal(void *File, uint32_t DefaultBufferSz);
75 ProfBufferIO *llvmCreateBufferIO(WriterCallback FileWriter, void *File,
InstrProfilingWriter.c 1 /*===- InstrProfilingWriter.c - Write instrumentation to a file or buffer -===*\
5 |* This file is distributed under the University of Illinois Open Source
37 void *File, uint8_t *Buffer, uint32_t BufferSz) {
38 BufferIO->File = File;
46 llvmCreateBufferIO(WriterCallback FileWriter, void *File, uint32_t BufferSz) {
53 llvmInitBufferIO(BufferIO, FileWriter, File, Buffer, BufferSz);
72 if (BufferIO->FileWriter(IO, 1, &BufferIO->File))
87 if (BufferIO->FileWriter(IO, 1, &BufferIO->File))
  /src/sys/external/bsd/acpica/dist/include/
acclib.h 23 * copy of the source code appearing in this file ("Covered Code") an
49 * contain a file documenting the changes Licensee made to create that Covered
50 * Code and the date of any change. Licensee must include in that file the
187 #define ENOENT 2 /* No such file or directory */
190 #define EBADF 9 /* Bad file number */
196 #define EEXIST 17 /* File exists */
347 * NOTE: Currently we only need to update errno for file IOs. Other
372 FILE *File,
378 FILE *File
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
dttemplate.c 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
183 FILE *File,
331 * DESCRIPTION: Create one template file of the requested signature.
420 /* If table has a template, create the template file */
482 * TableCount - Used for SSDTs in same file as DSDT
488 * DESCRIPTION: Create one template source file for the requested ACPI table.
499 FILE *File
    [all...]

Completed in 20 milliseconds

1 2 3 4 5