HomeSort by relevance Sort by last modified time
    Searched defs:File (Results 26 - 50 of 658) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4639204/prebuilt_include/llvm/lib/Fuzzer/
FuzzerIO.h 5 // This file is distributed under the University of Illinois Open Source
62 std::string File;
71 FILE* OpenFile(int Fd, const char *Mode);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/PDB/Native/
NativeExeSymbol.h 5 // This file is distributed under the University of Illinois Open Source
35 PDBFile &File;
  /prebuilts/clang/host/linux-x86/clang-4691093/prebuilt_include/llvm/lib/Fuzzer/
FuzzerIO.h 5 // This file is distributed under the University of Illinois Open Source
62 std::string File;
71 FILE* OpenFile(int Fd, const char *Mode);
  /prebuilts/go/darwin-x86/misc/cgo/stdio/
file.go 5 // license that can be found in the LICENSE file.
26 type File C.FILE
32 func (f *File) WriteString(s string) {
34 C.fputs(p, (*C.FILE)(f))
39 func (f *File) Flush() {
40 C.fflush((*C.FILE)(f))
  /prebuilts/go/darwin-x86/test/ken/
intervar.go 5 // license that can be found in the LICENSE file.
41 type File struct {
46 func (f *File) puts(s string) string {
47 return " file " + string(f.whoami + '0') + " -- " + s
54 f := new(File);
65 expected := " print 1 bio 2 file 3 -- abc"
  /prebuilts/go/linux-x86/misc/cgo/stdio/
file.go 5 // license that can be found in the LICENSE file.
26 type File C.FILE
32 func (f *File) WriteString(s string) {
34 C.fputs(p, (*C.FILE)(f))
39 func (f *File) Flush() {
40 C.fflush((*C.FILE)(f))
  /prebuilts/go/linux-x86/test/ken/
intervar.go 5 // license that can be found in the LICENSE file.
41 type File struct {
46 func (f *File) puts(s string) string {
47 return " file " + string(f.whoami + '0') + " -- " + s
54 f := new(File);
65 expected := " print 1 bio 2 file 3 -- abc"
  /device/google/contexthub/util/common/
file.cpp 5 * you may not use this file except in compliance with the License.
17 #include "file.h"
25 File::File()
30 File::File(const char *path, const char *mode)
36 File::~File() {
40 status_t File::initCheck() const {
44 status_t File::setTo(const char *path, const char *mode)
    [all...]
  /external/bsdiff/
file.cc 3 // found in the LICENSE file.
5 #include "bsdiff/file.h"
27 std::unique_ptr<File> File::FOpen(const char* pathname, int flags) {
30 return std::unique_ptr<File>();
31 return std::unique_ptr<File>(new File(fd));
34 File::~File() {
38 bool File::Read(void* buf, size_t count, size_t* bytes_read)
    [all...]
  /external/libchrome/base/files/
file.cc 3 // found in the LICENSE file.
5 #include "base/files/file.h"
14 File::Info::Info()
20 File::Info::~Info() {
23 File::File()
30 File::File(const FilePath& path, uint32_t flags)
36 File::File(PlatformFile platform_file
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
Script.c 1 /** @file
2 Script command allows the execution of commands from a text file
24 Execute the passed in file like a series of commands. The ; can be used on
25 a single line to indicate multiple commands per line. The Ascii text file
34 Argv[1] - Device Name:path for the file to load
53 EFI_OPEN_FILE *File;
63 // file name required
67 File = EfiOpen (Argv[1], EFI_FILE_MODE_READ, 0);
68 if (File == NULL) {
73 Status = EfiReadAllocatePool (File, &Address, &Size);
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
IndexedStreamData.h 5 // This file is distributed under the University of Illinois Open Source
21 IndexedStreamData(uint32_t StreamIdx, const IPDBFile &File);
29 const IPDBFile &File;
InfoStreamBuilder.h 5 // This file is distributed under the University of Illinois Open Source
28 InfoStreamBuilder(IPDBFile &File);
40 IPDBFile &File;
PDBFileBuilder.h 1 //===- PDBFileBuilder.h - PDB File Creation ---------------------*- C++ -*-===//
5 // This file is distributed under the University of Illinois Open Source
55 std::unique_ptr<PDBFile> File;
  /external/llvm/tools/llvm-pdbdump/
LLVMOutputStyle.h 5 // This file is distributed under the University of Illinois Open Source
22 LLVMOutputStyle(PDBFile &File);
43 PDBFile &File;
YAMLOutputStyle.h 5 // This file is distributed under the University of Illinois Open Source
24 YAMLOutputStyle(PDBFile &File);
37 PDBFile &File;
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
PackageDescriptor.cs 44 private readonly FileDescriptor file; field in class:Google.Protobuf.Reflection.PackageDescriptor
46 internal PackageDescriptor(string name, string fullName, FileDescriptor file)
48 this.file = file;
63 public FileDescriptor File
65 get { return file; }
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
IRReader.h 5 // This file is distributed under the University of Illinois Open Source
10 // This file defines functions for reading LLVM IR. They support both
13 // These functions must be defined in a header file in order to avoid
54 /// If the given file holds a bitcode image, return a Module
61 OwningPtr<MemoryBuffer> File;
62 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), File)) {
64 "Could not open input file: " + ec.message());
68 return getLazyIRModule(File.take(), Err, Context);
92 /// If the given file holds a bitcode image, return a Module for it.
98 OwningPtr<MemoryBuffer> File;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Object/
Binary.cpp 1 //===- Binary.cpp - A generic binary file -----------------------*- C++ -*-===//
5 // This file is distributed under the University of Illinois Open Source
10 // This file defines the Binary class.
93 default: // Unrecognized object file format.
99 OwningPtr<MemoryBuffer> File;
100 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Path, File))
102 return createBinary(File.take(), Result);
  /system/update_engine/payload_generator/
filesystem_interface.h 5 // you may not use this file except in compliance with the License.
44 // This represents a file or pseudo-file in the filesystem. It can include
45 // all sort of files, like symlinks, hardlinks, directories and even a file
47 struct File {
48 File() {
52 // The stat struct for the file. This is invalid (inode 0) for some
56 // The absolute path to the file inside the filesystem, for example,
61 // The list of all physical blocks holding the data of this file in
67 // All the deflate locations in the file. These locations are not relativ
    [all...]
  /external/flatbuffers/grpc/src/compiler/
schema_interface.h 110 struct File : public CommentHolder {
111 virtual ~File() {}
  /device/linaro/bootloader/edk2/ArmPlatformPkg/FileSystem/BootMonFs/
BootMonFsReadWrite.c 1 /** @file
24 Read data from an open file.
27 is the file handle to read data from.
34 @retval EFI_DEVICE_ERROR On entry, the current file position is
35 beyond the end of the file, or the device
50 BOOTMON_FS_FILE *File;
62 File = BOOTMON_FS_FILE_FROM_FILE_THIS (This);
63 if (File->Info == NULL) {
67 // Ensure the file has been written in Flash before reading it.
68 // This keeps the code simple and avoids having to manage a non-flushed file.
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/PyUtility/
PyUtility.c 1 /** @file
29 CHAR8 *File;
40 &File,
49 File,
58 PyErr_SetString(PyExc_Exception, "File creation failure");
73 // file saved unsuccessfully
74 PyErr_SetString(PyExc_Exception, "File write failure");
82 // PyErr_SetString(PyExc_Exception, "File flush failure");
94 STATIC INT8 SaveFileToDiskDocs[] = "SaveFileToDisk(): Make sure the file is saved to disk\n";
  /device/linaro/bootloader/edk2/CorebootModulePkg/SecCore/
FindPeiCore.c 1 /** @file
39 EFI_FFS_FILE_HEADER *File;
61 File = (EFI_FFS_FILE_HEADER*)(UINTN) CurrentAddress;
62 if (IS_FFS_FILE2 (File)) {
63 Size = FFS_FILE2_SIZE (File);
68 Size = FFS_FILE_SIZE (File);
82 if (File->Type != EFI_FV_FILETYPE_SECURITY_CORE &&
83 File->Type != EFI_FV_FILETYPE_PEI_CORE) {
88 // Loop through the FFS file sections within the FFS file
    [all...]
  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/FspInitPei/
FindPeiCore.c 1 /** @file
39 EFI_FFS_FILE_HEADER *File;
61 File = (EFI_FFS_FILE_HEADER*)(UINTN) CurrentAddress;
62 if (IS_FFS_FILE2 (File)) {
63 Size = FFS_FILE2_SIZE (File);
68 Size = FFS_FILE_SIZE (File);
82 if (File->Type != EFI_FV_FILETYPE_SECURITY_CORE &&
83 File->Type != EFI_FV_FILETYPE_PEI_CORE) {
88 // Loop through the FFS file sections within the FFS file
    [all...]

Completed in 917 milliseconds

12 3 4 5 6 7 8 91011>>