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

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerIO.h 5 // This file is distributed under the University of Illinois Open Source
62 std::string File;
70 // Similar to the basename utility: returns the file name w/o the dir prefix.
73 FILE* OpenFile(int Fd, const char *Mode);
FuzzerIO.cpp 5 // This file is distributed under the University of Illinois Open Source
24 static FILE *OutputFile = stderr;
65 FILE *Out = fopen(Path.c_str(), "w");
93 for (auto &File : Files)
94 if (size_t Size = FileSize(File))
95 V->push_back({File, Size});
106 FILE *NewOutputFile = OpenFile(OutputFd, "w");
FuzzerMerge.cpp 5 // This file is distributed under the University of Illinois Open Source
33 Printf("MERGE: failed to parse the control file (unexpected error)\n");
38 // The control file example:
44 // file2 # One file name per line.
45 // STARTED 0 123 # FileID, file size
68 // Parse file names.
158 // One greedy pass: add the file's features to AllFeatures.
159 // If new features were added, add this file to NewFiles.
173 for (auto &File : Files) {
175 OS << File.Name << " size: " << File.Size << " features: "
    [all...]
FuzzerLoop.cpp 5 // This file is distributed under the University of Illinois Open Source
229 Printf("==%lu== ERROR: libFuzzer: file size exceeded\n", GetPid());
750 for (auto &File : SizedFiles) {
751 MaxSize = Max(File.Size, MaxSize);
752 MinSize = Min(File.Size, MinSize);
753 TotalSize += File.Size;
781 auto U = FileToVector(SF.File, MaxInputLen, /*ExitOnError=*/false);
  /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/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/lib/libc/net/
nsparser.y 71 File
  /src/sys/arch/hpc/stand/hpcboot/
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...]
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
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,
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...]
  /src/sys/external/bsd/acpica/dist/compiler/
aslfileio.c 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;
    [all...]
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...]
preprocess.h 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
229 FILE *File;
388 FILE *
394 FILE *
403 FILE *InputFile,
asltypes.h 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
242 /* File info */
246 FILE *Handle;
259 typedef UINT32 ASL_FILE_SWITCH_STATUS; /* File switch status */
265 * File types. Note: Any changes to this table must also be reflected
270 * NOTE: Don't move the first 4 file types
272 * .xxx file extension: this is used as a temporary .aml file fo
    [all...]
  /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/sys/external/bsd/acpica/dist/common/
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...]
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...]
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...]
  /src/sys/external/bsd/gnu-efi/dist/lib/
hand.c 307 EFI_FILE_HANDLE File;
311 // File the file system interface to the device
321 Status = uefi_call_wrapper(Volume->OpenVolume, 2, Volume, &File);
328 return EFI_ERROR(Status) ? NULL : File;
  /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/external/bsd/acpica/dist/tools/acpisrc/
asfile.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
225 * wildcard and the requested file type
229 /* Looking for directory files, must check file type */
250 /* Otherwise, this is a file, not a directory */
252 VERBOSE_PRINT (("File: %s\n", Filename));
319 /* Do the Lex file(s) */
324 /* Do the yacc file(s) */
386 printf ("%s: ****File has UNIX format**** (LF only, not CR/LF) %u lines\n"
    [all...]
  /src/sys/external/bsd/acpica/dist/os_specific/service_layers/
oslinuxtbl.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
209 FILE *File,
248 /* File locations */
619 FILE *File,
628 fseek (File, 0, SEEK_SET);
629 while (fgets (Buffer, 80, File))
    [all...]
  /src/games/sail/
extern.h 60 #define grappled(a) ((a)->file->ngrap)
61 #define fouled(a) ((a)->file->nfoul)
64 #define grappled2(a, b) ((a)->file->grap[(b)->file->index].sn_count)
65 #define fouled2(a, b) ((a)->file->foul[(b)->file->index].sn_count)
68 #define Xgrappled2(a, b) ((a)->file->grap[(b)->file->index].sn_turn < turn-1 \
70 #define Xfouled2(a, b) ((a)->file->foul[(b)->file->index].sn_turn < turn-1
179 struct File *file; \/* 12 *\/ member in struct:ship
    [all...]
  /src/lib/libc/isc/
eventlib_p.h 20 /*! \file
84 #define EV_CONN_SELECTED 0x0002 /*%< evSelectFD(conn->file). */
86 evFileID file; member in struct:evConn
129 evFileID file; member in struct:evStream
169 enum { Accept, File, Stream, Timer, Wait, Free, Null } type;
172 struct { evFile *this; int eventmask; } file; member in union:evEvent_p::__anon6ab7f5a8040a
220 FILE *output;

Completed in 22 milliseconds

1 2