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

1 2 3 4 5 6

  /src/sys/external/bsd/acpica/dist/tools/efihello/
efihello.c 76 ACPI_FILE File;
87 File = fopen (argv[1], "r");
88 if (!File)
97 File = stdin;
102 Result = fgets (LineBuffer, LINE_SIZE, File);
106 fclose (File);
121 fclose (File);
  /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);
  /src/external/apache2/llvm/dist/clang/lib/Driver/
DarwinSDKInfo.cpp 22 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> File =
24 if (!File) {
25 // If the file couldn't be read, assume it just doesn't exist.
29 llvm::json::parse(File.get()->getBuffer());
Distro.cpp 24 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> File =
26 if (!File)
27 File = VFS.getBufferForFile("/usr/lib/os-release");
28 if (!File)
32 File.get()->getBuffer().split(Lines, "\n");
52 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> File =
54 if (!File)
58 File.get()->getBuffer().split(Lines, "\n");
112 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> File =
115 if (File) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Testing/Support/
SupportHelpers.cpp 41 EXPECT_TRUE(Found) << "Unit test source directory file does not exist.";
43 auto File = MemoryBuffer::getFile(InputFilePath, /*IsText=*/true);
45 EXPECT_TRUE(static_cast<bool>(File))
46 << "Could not open unit test source directory file.";
49 InputFilePath.append((*File)->getBuffer().trim());
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
WasmDump.cpp 9 /// \file
10 /// This file implements the wasm-specific dumper for llvm-objdump.
23 const auto *File = dyn_cast<const WasmObjectFile>(Obj);
27 outs().write_hex(File->getHeader().Version);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeEnumInjectedSources.h 25 NativeEnumInjectedSources(PDBFile &File, const InjectedSourceStream &IJS,
35 PDBFile &File;
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
MachOUtils.h 29 std::unique_ptr<llvm::sys::fs::TempFile> File;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
ExplainOutputStyle.h 28 ExplainOutputStyle(InputFile &File, uint64_t FileOffset);
60 InputFile &File;
YAMLOutputStyle.h 24 YAMLOutputStyle(PDBFile &File);
41 PDBFile &File;
BytesOutputStyle.h 30 BytesOutputStyle(PDBFile &File);
60 PDBFile &File;
TypeReferenceTracker.h 31 TypeReferenceTracker(InputFile &File);
54 InputFile &File;
DumpOutputStyle.h 69 DumpOutputStyle(InputFile &File);
95 Error dumpOldFpo(PDBFile &File);
96 Error dumpNewFpo(PDBFile &File);
114 InputFile &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/lib/libc/md/
mdXhl.c 6 * <phk@login.dkuug.dk> wrote this file. As long as you retain this notice you
28 WA(MDNAME(File),CONCAT(_,MDNAME(File)))
71 MDNAME(File)(const char *filename, char *buf)
  /src/sys/external/bsd/acpica/dist/compiler/
aslfileio.c 3 * Module Name: aslfileio - File I/O support
55 * PARAMETERS: FileId - Index into file info array
82 * PARAMETERS: FileId - Index into file info array
83 * Filename - file pathname to open
88 * DESCRIPTION: Open a file.
99 FILE *File;
105 File = fopen (Filename, Mode);
106 if (!File)
112 AslGbl_Files[FileId].Handle = File;
    [all...]
dttemplate.c 75 FILE *File,
223 * DESCRIPTION: Create one template file of the requested signature.
312 /* If table has a template, create the template file */
374 * TableCount - Used for SSDTs in same file as DSDT
380 * DESCRIPTION: Create one template source file for the requested ACPI table.
391 FILE *File;
397 /* New file will have a .asl suffix */
413 File = fopen (DisasmFilename, "w+")
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpidump/
apfiles.c 3 * Module Name: apfiles - File-related functions for acpidump utility
62 * DESCRIPTION: Query for file overwrite if it already exists.
102 * RETURN: Open file handle
104 * DESCRIPTION: Open a text output file for acpidump. Checks if file already
113 ACPI_FILE File;
116 /* If file exists, prompt for overwrite */
123 /* Point stdout to the file */
125 File = fopen (Pathname, "w");
126 if (!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,
  /src/sys/external/bsd/compiler_rt/dist/test/profile/
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/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
LineEntry.h 19 /// address, file and line of the line table row for a given address. The
24 uint32_t File; ///< 1 based index of file in FileTable
27 : Addr(A), File(F), Line(L) {}
28 bool isValid() { return File != 0; }
32 return OS << "addr=" << HEX64(LE.Addr) << ", file=" << format("%3u", LE.File)
37 return LHS.Addr == RHS.Addr && LHS.File == RHS.File && LHS.Line == RHS.Line;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/FileSystem/
UniqueID.h 9 // This file is cut out of llvm/Support/FileSystem.h to allow UniqueID to be
25 uint64_t File;
29 UniqueID(uint64_t Device, uint64_t File) : Device(Device), File(File) {}
32 return Device == Other.Device && File == Other.File;
41 return File < Other.File;
45 uint64_t getFile() const { return File; }
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
SymbolRemappingReader.h 1 //===- SymbolRemappingReader.h - Read symbol remapping file -----*- C++ -*-===//
9 // This file contains definitions needed for reading and applying symbol
14 // NOTE: If you are making changes to this file format, please remember
18 // File format
21 // The symbol remappings are written as an ASCII text file. Blank lines and
71 SymbolRemappingParseError(StringRef File, int64_t Line, const Twine &Message)
72 : File(File), Line(Line), Message(Message.str()) {}
75 OS << File << ':' << Line << ": " << Message;
81 StringRef getFileName() const { return File; }
    [all...]
  /src/external/bsd/iscsi/dist/src/lib/
md5hl.c 26 * <phk@login.dkuug.dk> wrote this file. As long as you retain this notice you
80 MDNAME(File)(filename, buf)
  /src/external/apache2/llvm/dist/clang/include/clang/Serialization/
GlobalModuleIndex.h 9 // This file defines the GlobalModuleIndex class, which manages a global index
59 /// Buffer containing the index file, which is lazily accessed so long
70 /// Information about a given module file.
72 ModuleInfo() : File(), Size(), ModTime() { }
74 /// The module file, once it has been resolved.
75 ModuleFile *File;
77 /// The module file name.
80 /// Size of the module file at the time the global index was built.
83 /// Modification time of the module file at the time the global
96 /// file name
    [all...]

Completed in 72 milliseconds

1 2 3 4 5 6