HomeSort by relevance Sort by last modified time
    Searched defs:Info (Results 1 - 25 of 358) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/Inputs/
pr27445.h 1 struct Info {
2 virtual ~Info();
  /device/generic/goldfish/wifi/wifi_hal/
info.h 27 class Info {
30 Info();
info.cpp 17 #include "info.h"
21 Info::Info() {
27 bool Info::init() {
39 void Info::eventLoop() {
43 void Info::stop(StopHandler stopHandler) {
47 wifi_error Info::getInterfaces(int* num, wifi_interface_handle** interfaces) {
  /external/syzkaller/vendor/google.golang.org/grpc/tap/
tap.go 27 // Info defines the relevant information needed by the handles.
28 type Info struct {
51 type ServerInHandle func(ctx context.Context, info *Info) (context.Context, error)
  /external/llvm/tools/llvm-dwp/
DWPError.h 11 DWPError(std::string Info) : Info(std::move(Info)) {}
12 void log(raw_ostream &OS) const override { OS << Info; }
19 std::string Info;
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-dwp/
DWPError.h 11 DWPError(std::string Info) : Info(std::move(Info)) {}
12 void log(raw_ostream &OS) const override { OS << Info; }
19 std::string Info;
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/
QueryTable.h 2 Build a table, each item is (key, info) pair.
23 CHAR16 *Info;
27 // Print info by option
41 Given a table and a Key, return the responding info.
58 @param[in, out] Info Input as empty buffer; output as data buffer.
59 @param[in] InfoLen The max number of characters for Info.
61 @return the found Key and Info is valid.
62 @retval QUERY_TABLE_UNFOUND and Info should be NULL.
69 IN OUT CHAR16 *Info,
  /external/skia/src/core/
SkYUVPlanesCache.h 21 * The Info struct contains data about the 4 Y, U, V, and A planes of memory stored
27 struct Info {
37 static SkCachedData* FindAndRef(uint32_t genID, Info* info,
43 static void Add(uint32_t genID, SkCachedData* data, Info* info,
  /external/skqp/src/core/
SkYUVPlanesCache.h 21 * The Info struct contains data about the 4 Y, U, V, and A planes of memory stored
27 struct Info {
37 static SkCachedData* FindAndRef(uint32_t genID, Info* info,
43 static void Add(uint32_t genID, SkCachedData* data, Info* info,
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/ArmShellCmdRunAxf/
BootMonFsLoader.c 49 BOOTMON_FS_FILE_INFO Info;
56 InfoSize = sizeof (Info);
57 // Get BootMon File info and see if it gives us what we need to load the file.
59 &InfoSize, &Info);
65 if ((Info.Size == 0) || (Info.EntryPoint == 0) || (Info.RegionCount == 0) ||
66 (Info.RegionCount > BOOTMONFS_IMAGE_DESCRIPTION_REGION_MAX)) {
71 // checksums. Info.Offset can be zero if it loads from the start of the
73 for (Index = 0; Index < Info.RegionCount; Index++) {
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/MemoryInitPei/
MemoryInitPeim.c 46 EFI_MEMORY_TYPE_INFORMATION Info[10];
48 Info[0].Type = EfiACPIReclaimMemory;
49 Info[0].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiACPIReclaimMemory);
50 Info[1].Type = EfiACPIMemoryNVS;
51 Info[1].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiACPIMemoryNVS);
52 Info[2].Type = EfiReservedMemoryType;
53 Info[2].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiReservedMemoryType);
54 Info[3].Type = EfiRuntimeServicesData;
55 Info[3].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiRuntimeServicesData);
56 Info[4].Type = EfiRuntimeServicesCode;
    [all...]
  /external/grpc-grpc/src/csharp/Grpc.Core/Logging/
ILogger.cs 36 /// <summary>Logs a message with severity Info.</summary>
37 void Info(string message);
39 /// <summary>Logs a formatted message with severity Info.</summary>
40 void Info(string format, params object[] formatArgs);
LogLevel.cs 32 /// Info severity.
34 Info,
LogLevelFilterLogger.cs 88 /// <summary>Logs a message with severity Info.</summary>
89 public void Info(string message)
91 if (logLevel <= LogLevel.Info)
93 innerLogger.Info(message);
97 /// <summary>Logs a formatted message with severity Info.</summary>
98 public void Info(string format, params object[] formatArgs)
100 if (logLevel <= LogLevel.Info)
102 innerLogger.Info(format, formatArgs);
179 case "INFO":
180 return LogLevel.Info;
    [all...]
TextWriterLogger.cs 98 /// <summary>Logs a message with severity Info.</summary>
99 public void Info(string message)
104 /// <summary>Logs a formatted message with severity Info.</summary>
105 public void Info(string format, params object[] formatArgs)
107 Info(string.Format(format, formatArgs));
  /external/libchrome/base/files/
file.cc 18 File::Info::Info()
24 File::Info::~Info() = default;
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
PDBFileBuilder.h 52 std::unique_ptr<InfoStreamBuilder> Info;
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMWinCOFFObjectWriter.cpp 50 const MCFixupKindInfo &Info = MAB.getFixupKindInfo(Fixup.getKind());
51 report_fatal_error(Twine("unsupported relocation type: ") + Info.Name);
  /external/skia/include/gpu/vk/
GrVkExtensions.h 29 struct Info {
30 Info() {}
31 Info(const char* name) : fName(name), fSpecVersion(0) {}
37 bool operator() (const Info& a, const SkString& b) {
40 bool operator() (const SkString& a, const GrVkExtensions::Info& b) {
60 SkTArray<Info> fExtensions;
  /external/skqp/include/gpu/vk/
GrVkExtensions.h 29 struct Info {
30 Info() {}
31 Info(const char* name) : fName(name), fSpecVersion(0) {}
37 bool operator() (const Info& a, const SkString& b) {
40 bool operator() (const SkString& a, const GrVkExtensions::Info& b) {
60 SkTArray<Info> fExtensions;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64WinCOFFObjectWriter.cpp 54 const MCFixupKindInfo &Info = MAB.getFixupKindInfo(Fixup.getKind());
55 report_fatal_error(Twine("unsupported relocation type: ") + Info.Name);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/MCTargetDesc/
ARMWinCOFFObjectWriter.cpp 59 const MCFixupKindInfo &Info = MAB.getFixupKindInfo(Fixup.getKind());
60 report_fatal_error(Twine("unsupported relocation type: ") + Info.Name);
  /device/linaro/bootloader/edk2/MdePkg/Include/Ppi/
VectorHandoffInfo.h 2 This file declares Vector Handoff Info PPI that describes an array of
34 /// Vector Handoff Info Attributes
70 EFI_VECTOR_HANDOFF_INFO *Info;
  /device/linaro/bootloader/edk2/OvmfPkg/QemuVideoDxe/
Gop.c 22 OUT EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *Info
25 Info->Version = 0;
27 Info->PixelFormat = PixelBitMask;
28 Info->PixelInformation.RedMask = PIXEL_RED_MASK;
29 Info->PixelInformation.GreenMask = PIXEL_GREEN_MASK;
30 Info->PixelInformation.BlueMask = PIXEL_BLUE_MASK;
31 Info->PixelInformation.ReservedMask = 0;
33 Info->PixelFormat = PixelBitMask;
34 Info->PixelInformation.RedMask = PIXEL24_RED_MASK;
35 Info->PixelInformation.GreenMask = PIXEL24_GREEN_MASK;
    [all...]
  /external/clang/lib/AST/
CommentBriefParser.cpp 82 const CommandInfo *Info = Traits.getCommandInfo(Tok.getCommandID());
83 if (Info->IsBriefCommand) {
89 if (Info->IsReturnsCommand) {
98 if (Info->IsBlockCommand) {

Completed in 2149 milliseconds

1 2 3 4 5 6 7 8 91011>>