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

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
BootOption.c 1 /** @file
4 Include file system navigation, system handle selection
216 available file system in the system. They includes all instances
222 @retval EFI_SUCCESS Success find the file system
305 // Locate Handles that support Simple File System protocol
316 // Find all the instances of the File System prototocol
368 // Get current file system's Volume Label
371 VolumeLabel = L"NO FILE SYSTEM INFO";
398 // Searching for handles that support Load File protocol
433 L"Load File [%s]",
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Pi/
PiFirmwareFile.h 1 /** @file
2 The firmware file related definitions in PI.
24 /// Used to verify the integrity of the file.
29 /// The IntegrityCheck.Checksum.Header field is an 8-bit checksum of the file
30 /// header. The State and IntegrityCheck.Checksum.File fields are assumed
36 /// field is set to one, the IntegrityCheck.Checksum.File field is an 8-bit
37 /// checksum of the file data.
39 /// the IntegrityCheck.Checksum.File field must be initialized with a value of
40 /// 0xAA. The IntegrityCheck.Checksum.File field is valid any time the
43 UINT8 File;
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
SecureBootConfigImpl.c 1 /** @file
88 // Possible DER-encoded certificate file suffixes, end with NULL pointer.
103 @param[in] FileSuffix The suffix of the input certificate file
312 Generate the PK signature list from the X509 Certificate storing file (.cer)
314 @param[in] X509File FileHandle of X509 Certificate storing file.
366 // Fill the PK database with PKpub data from X509 certificate file.
420 // Parse the file's postfix. Only support DER encoded X.509 certificate files.
428 DEBUG ((EFI_D_ERROR, "Unsupported file type, only DER encoded certificate (%s) is supported.", mSupportX509Suffix));
435 // Prase the selected PK file and generature PK certificate list.
513 Enroll a new KEK item from public key storing file (*.pbk).
    [all...]
  /external/clang/include/clang/Frontend/
ASTUnit.h 5 // This file is distributed under the University of Illinois Open Source
66 /// \brief Utility class for loading a ASTContext from an AST file.
126 /// \brief Track whether the main file was loaded from an AST or not.
139 /// from a source file.
142 // of a PCH file when using the Index library on an ASTUnit loaded from
147 /// \brief Sorted (by file offset) vector of pairs of file offset/Decl.
151 /// \brief Map from FileID to the file-level declarations that it contains.
155 /// The name of the original source file used to generate this ASTUnit.
189 const FileEntry *File;
    [all...]
  /external/clang/lib/CodeGen/
CoverageMappingGen.cpp 5 // This file is distributed under the University of Illinois Open Source
107 /// \brief Return the start location of an included file or expanded macro.
114 /// \brief Return the end location of an included file or expanded macro.
122 /// \brief Find out where the current file is included or macro is expanded.
161 /// Fills \c Mapping with the virtual file mapping needed to write out
162 /// coverage and collects the necessary file information to emit source and
171 FileID File = SM.getFileID(Loc);
172 if (!Visited.insert(File).second)
199 /// \brief Get the coverage mapping file ID for \c Loc.
201 /// If such file id doesn't exist, return None
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 5 // This file is distributed under the University of Illinois Open Source
216 // Chain in -diagnostic-log-file dumper, if requested.
230 // File Manager
234 // TODO: choose the virtual file system based on the CompilerInvocation.
254 // Create the file entry for the file that we're mapping from.
264 // Override the contents of the "from" file with the contents of
265 // the "to" file.
272 // Find the file that we're mapping to.
279 // Create the file entry for the file that we're mapping from
    [all...]
  /external/clang/lib/Lex/
Pragma.cpp 5 // This file is distributed under the University of Illinois Open Source
10 // This file implements the PragmaHandler/PragmaTable interfaces and implements
362 // Get the current file lexer we're looking at. Ignore _Pragma 'files' etc.
363 // Mark the file as a once-only file now.
426 // Get the current file lexer we're looking at. Ignore _Pragma 'files' etc.
429 // Mark the file as a system header.
439 // Notify the client, if desired, that we are in a new source file.
476 // Search include directories for this file.
478 const FileEntry *File
    [all...]
  /external/llvm/include/llvm/Support/
ARMBuildAttributes.h 5 // This file is distributed under the University of Illinois Open Source
10 // This file contains enumerations and support routines for ARM build attributes
35 File = 1,
FileSystem.h 1 //===- llvm/Support/FileSystem.h - File System OS Concept -------*- C++ -*-===//
5 // This file is distributed under the University of Illinois Open Source
10 // This file declares the llvm::sys::fs namespace. It is designed after
55 /// An enumeration for the file system's view of the type.
123 uint64_t File;
127 UniqueID(uint64_t Device, uint64_t File) : Device(Device), File(File) {}
129 return Device == Other.Device && File == Other.File;
    [all...]
GCOV.h 5 // This file is distributed under the University of Illinois Open Source
60 StringRef File = Buffer->getBuffer().slice(0, 4);
61 if (File != "oncg") {
62 errs() << "Unexpected file type: " << File << ".\n";
71 StringRef File = Buffer->getBuffer().slice(0, 4);
72 if (File != "adcg") {
73 errs() << "Unexpected file type: " << File << ".\n";
230 /// GCOVFile - Collects coverage information for one pair of coverage file
    [all...]
  /external/llvm/lib/MC/
MCDwarf.cpp 5 // This file is distributed under the University of Illinois Open Source
180 // This emits the Dwarf file and the line tables.
290 // Put out the directory and file tables.
299 // Second the file table.
309 MCOS->EmitIntValue(0, 1); // Terminate the file list
347 // File numbers start with 1 and/or after any file numbers
348 // allocated by inline-assembler .file directives.
361 MCDwarfFile &File = MCDwarfFiles[FileNumber];
364 if (!File.Name.empty()
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 1 //===- FileCheck.cpp - Check that File's Contents match what is expected --===//
5 // This file is distributed under the University of Illinois Open Source
10 // FileCheck does a line-by line check of a file that validates whether it
14 // the file matched the expected contents, and exit status of 1 if it did not
39 CheckFilename(cl::Positional, cl::desc("<check-file>"), cl::Required);
42 InputFilename("input-file", cl::desc("File to check (defaults to stdin)"),
47 cl::desc("Prefix to use from check file (defaults to 'CHECK')"));
67 cl::desc("Allow the input file to be empty. This is useful when making\n"
92 /// MatchEOF - When set, this pattern only matches the end of file. This i
    [all...]
  /external/lzma/CPP/7zip/Bundles/LzmaSpec/
LzmaSpec.cpp 4 // This code implements LZMA file decoding according to LZMA specification.
32 FILE *File;
39 int c = getc(File);
41 throw "Unexpected end of file";
50 FILE *File;
57 if (putc(b, File) == EOF)
58 throw "File writing error";
618 inStream.File = fopen(args[1], "rb");
    [all...]
  /external/mesa3d/src/mesa/program/
prog_instruction.h 27 * \file prog_instruction.h
190 GLuint File:4; /**< One of the PROGRAM_* register file values. */
211 GLuint File:4; /**< One of the PROGRAM_* register file values */
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
ARMBuildAttributes.h 5 // This file is distributed under the University of Illinois Open Source
10 // This file contains enumerations and support routines for ARM build attributes
35 File = 1,
FileSystem.h 1 //===- llvm/Support/FileSystem.h - File System OS Concept -------*- C++ -*-===//
5 // This file is distributed under the University of Illinois Open Source
10 // This file declares the llvm::sys::fs namespace. It is designed after
54 /// An enumeration for the file system's view of the type.
122 uint64_t File;
126 UniqueID(uint64_t Device, uint64_t File) : Device(Device), File(File) {}
129 return Device == Other.Device && File == Other.File;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
UsimPhoneBookManager.java 5 * you may not use this file except in compliance with the License.
85 // class File represent a PBR record TLV object which points to the rest of the phonebook EFs
86 private class File {
87 // Phonebook reference file constructed tag defined in 3GPP TS 31.102
90 // EFID of the file
92 // SFI (Short File Identification) of the file. 0xFF indicates invalid SFI.
97 File(int parentTag, int efid, int sfi, int index) {
146 // Check if the PBR file is present in the cache, if not read it
185 // Read the phonebook reference file EF_PBR
325 File file = mPbrRecords.get(recId).mFileIds.get(USIM_EFADN_TAG); local
509 File file = record.mFileIds.get(USIM_EFADN_TAG); local
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Formatter.java 4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9 * particular file as subject to the "Classpath" exception as provided
10 * by Oracle in the LICENSE file that accompanied this code.
15 * version 2 for more details (a copy is included in the LICENSE file that
32 import java.io.File;
119 * System.err.printf("Unable to open file '%1$s': %2$s",
121 * // -&gt; "Unable to open file 'food': No such file or directory"
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/
ASTUnit.h 5 // This file is distributed under the University of Illinois Open Source
62 /// \brief Utility class for loading a ASTContext from an AST file.
123 /// \brief Track whether the main file was loaded from an AST or not.
136 /// from a source file.
139 // of a PCH file when using the Index library on an ASTUnit loaded from
144 /// \brief Sorted (by file offset) vector of pairs of file offset/Decl.
148 /// \brief Map from FileID to the file-level declarations that it contains.
152 /// The name of the original source file used to generate this ASTUnit.
186 const FileEntry *File;
    [all...]
FrontendOptions.h 5 // This file is distributed under the University of Illinois Open Source
35 EmitAssembly, ///< Emit a .s file.
36 EmitBC, ///< Emit a .bc file.
38 EmitLLVM, ///< Emit a .ll file.
41 EmitObj, ///< Emit a .o file.
45 ///< interface file.
49 ModuleFileInfo, ///< Dump information about a module file.
50 VerifyPCH, ///< Load and verify that a PCH file is usable.
54 PrintPreamble, ///< Print the "preamble" of the input file
85 /// \brief An input file for the front end
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Serialization/
Module.h 5 // This file is distributed under the University of Illinois Open Source
10 // This file defines the Module class, which describes a module that has
11 // been loaded from an AST file.
48 MK_ImplicitModule, ///< File is an implicitly-loaded module.
49 MK_ExplicitModule, ///< File is an explicitly-loaded module.
50 MK_PCH, ///< File is a PCH file treated as such.
51 MK_Preamble, ///< File is a PCH file treated as the preamble.
52 MK_MainFile, ///< File is a PCH file treated as the actual main file
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
ARMBuildAttributes.h 5 // This file is distributed under the University of Illinois Open Source
10 // This file contains enumerations and support routines for ARM build attributes
35 File = 1,
GCOV.h 5 // This file is distributed under the University of Illinois Open Source
70 StringRef File = Buffer->getBuffer().slice(0, 4);
71 if (File != "oncg") {
72 errs() << "Unexpected file type: " << File << ".\n";
81 StringRef File = Buffer->getBuffer().slice(0, 4);
82 if (File != "adcg") {
83 errs() << "Unexpected file type: " << File << ".\n";
240 /// GCOVFile - Collects coverage information for one pair of coverage file
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Frontend/
ASTUnit.h 5 // This file is distributed under the University of Illinois Open Source
68 /// \brief Utility class for loading a ASTContext from an AST file.
133 /// \brief Track whether the main file was loaded from an AST or not.
146 /// from a source file.
149 // of a PCH file when using the Index library on an ASTUnit loaded from
154 /// \brief Sorted (by file offset) vector of pairs of file offset/Decl.
158 /// \brief Map from FileID to the file-level declarations that it contains.
162 /// The name of the original source file used to generate this ASTUnit.
204 const FileEntry *File;
    [all...]
FrontendOptions.h 5 // This file is distributed under the University of Illinois Open Source
36 EmitAssembly, ///< Emit a .s file.
37 EmitBC, ///< Emit a .bc file.
39 EmitLLVM, ///< Emit a .ll file.
42 EmitObj, ///< Emit a .o file.
46 ///< interface file.
50 ModuleFileInfo, ///< Dump information about a module file.
51 VerifyPCH, ///< Load and verify that a PCH file is usable.
55 PrintPreamble, ///< Print the "preamble" of the input file
66 /// The kind of a file that we've been handed as an input
    [all...]

Completed in 1251 milliseconds

<<11121314151617181920>>