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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/WebServer/
MemoryMap.c 46 UINT64 Attributes;
76 " <tr><th align=\"right\">Type</th><th align=\"right\">Start</th><th align=\"right\">End</th><th align=\"right\">Attributes</th></tr>\r\n" );
142 // Display the attributes
150 pMemoryDescriptor->Attributes );
156 // Decode the attributes
163 Attributes = pMemoryDescriptor->Attributes;
165 if ( 0 != ( Attributes & EFI_MEMORY_RUNTIME )) {
175 if ( 0 != ( Attributes & EFI_MEMORY_XP )) {
193 if ( 0 != ( Attributes & EFI_MEMORY_RP ))
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/AutoScanPei/
AutoScanPei.c 53 EFI_RESOURCE_ATTRIBUTE_TYPE Attributes;
73 Attributes =
90 Attributes |= EFI_RESOURCE_ATTRIBUTE_TESTED;
95 Attributes,
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Guid/
StatusCodeDataTypeVariable.h 33 UINT32 Attributes;
  /device/linaro/bootloader/edk2/OvmfPkg/AcpiPlatformDxe/
PciDecoding.c 23 attributes, and enable IO and MMIO decoding for each.
32 original PCI attributes for each.
92 UINT64 Attributes;
103 // Stash the current attributes
105 Status = PciIo->Attributes (PciIo, EfiPciIoAttributeOperationGet, 0,
114 // Retrieve supported attributes
116 Status = PciIo->Attributes (PciIo, EfiPciIoAttributeOperationSupported, 0,
117 &Attributes);
127 Attributes &= EFI_PCI_IO_ATTRIBUTE_IO | EFI_PCI_IO_ATTRIBUTE_MEMORY;
128 Status = PciIo->Attributes (PciIo, EfiPciIoAttributeOperationEnable,
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/Dxe/BootScriptExecutorDxe/IA32/
SetIdtEntry.c 27 UINT16 Attributes;
58 IdtEntry->Attributes = (UINT16)INTERRUPT_GATE_ATTRIBUTE;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
Attributes.java 20 * Attributes ::=
24 public class Attributes
27 private ASN1Set attributes; field in class:Attributes
29 private Attributes(ASN1Set set)
31 attributes = set;
34 public Attributes(ASN1EncodableVector v)
36 attributes = new DLSet(v);
45 * <li> {@link Attributes} object
46 * <li> {@link org.bouncycastle.asn1.ASN1Set#getInstance(java.lang.Object) ASN1Set} input formats with Attributes structure inside
52 public static Attributes getInstance(Object obj
    [all...]
  /external/gptfdisk/
attributes.h 10 #define NUM_ATR 64 /* # of attributes -- 64, since it's a 64-bit field */
15 class Attributes {
20 uint64_t attributes; member in class:Attributes
23 Attributes(void);
24 Attributes(const uint64_t a);
25 ~Attributes(void);
26 void operator=(uint64_t a) {attributes = a;}
28 uint64_t GetAttributes(void) const {return attributes;}
37 }; // class Attributes
39 ostream & operator<<(ostream & os, const Attributes & data)
    [all...]
  /external/llvm/bindings/python/llvm/
enumerations.py 22 'Attributes',
33 Attributes = [
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Library/PlatformIntelBdsLib/
IntelBdsPlatformCommon.c 62 EFI_FV_FILE_ATTRIBUTES Attributes;
90 &Attributes,
  /device/linaro/bootloader/edk2/ArmPkg/Include/Library/
BdsLib.h 26 UINT32 Attributes;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/
GetImage.c 43 EFI_FV_FILE_ATTRIBUTES Attributes;
91 &Attributes,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/
GetImage.c 43 EFI_FV_FILE_ATTRIBUTES Attributes;
91 &Attributes,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/VariableStore/
VariableStore.h 76 UINT32 Attributes;
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/SmmLockBoxLib/
SmmLockBoxLibPrivate.h 46 UINT64 Attributes;
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtAutoScanPei/
WinNtAutoScan.c 126 EFI_RESOURCE_ATTRIBUTE_TYPE Attributes;
149 Attributes =
166 Attributes |= EFI_RESOURCE_ATTRIBUTE_TESTED;
171 Attributes,
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Spi/RuntimeDxe/
PchSpi.c 92 UINT64 Attributes;
136 Attributes = GcdMemorySpaceDescriptor.Attributes | EFI_MEMORY_RUNTIME;
149 Attributes
  /external/icu/icu4c/source/i18n/unicode/
tblcoll.h 695 * a collator with the same attributes using the ucol_openFromShortString API.
    [all...]
  /external/llvm/utils/TableGen/
Attributes.cpp 1 //===- Attributes.cpp - Generate attributes -------------------------------===//
23 class Attributes {
25 Attributes(RecordKeeper &R) : Records(R) {}
43 void Attributes::emitTargetIndependentEnums(raw_ostream &OS) {
56 void Attributes::emitConversionFn(raw_ostream &OS) {
77 void Attributes::emitFnAttrCompatCheck(raw_ostream &OS, bool IsStringAttr) {
141 void Attributes::printEnumAttrClasses(raw_ostream &OS,
154 void Attributes::printStrBoolAttrClasses(raw_ostream &OS,
167 void Attributes::emit(raw_ostream &OS)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFAbbreviationDeclaration.h 25 SmallVector<DWARFAttribute, 8> Attributes;
34 uint32_t getNumAttributes() const { return Attributes.size(); }
36 return Attributes.size() > idx ? Attributes[idx].getAttribute() : 0;
39 return Attributes.size() > idx ? Attributes[idx].getForm() : 0;
48 return Attributes;
  /external/syslinux/efi32/include/efi/protocol/
efivar.h 83 UINT32 Attributes;
  /external/syslinux/efi64/include/efi/protocol/
efivar.h 83 UINT32 Attributes;
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/protocol/
efivar.h 83 UINT32 Attributes;
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
init.c 174 UINT32 Attributes;
179 Status = uefi_call_wrapper(RT->GetVariable, 5, L"EFIDebug", &EfiGlobalVariable, &Attributes, &DataSize, &NewEFIDebug);
  /external/testng/src/main/java/org/testng/internal/
Attributes.java 14 public class Attributes implements IAttributes {
  /libcore/luni/src/main/java/org/xml/sax/
Attributes.java 0 // Attributes.java - attribute list with Namespace support
5 // $Id: Attributes.java,v 1.13 2004/03/18 12:28:05 dmegginson Exp $
11 * Interface for a list of XML attributes.
20 * <p>This interface allows access to a list of attributes in
29 * <p>The list will not contain attributes that were declared
31 * contain attributes used as Namespace declarations (xmlns*) unless
37 * give namespace declaration attributes a namespace URI.
42 * that those attributes be given URIs, conforming to a later
60 * <p>The order of attributes in the list is unspecified, and will
69 public interface Attributes
    [all...]

Completed in 1044 milliseconds

1 2 3 4 5 6 7 8 91011>>