Home
last modified time | relevance | path

Searched refs:attributes (Results 1 – 25 of 99) sorted by relevance

1234

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/webchecker/
Dwebchecker.py788 def check_name_id(self, attributes): argument
795 for name, value in attributes:
803 def unknown_starttag(self, tag, attributes): argument
806 self.check_name_id(attributes)
808 def start_a(self, attributes): argument
809 self.link_attr(attributes, 'href')
810 self.check_name_id(attributes)
814 def do_area(self, attributes): argument
815 self.link_attr(attributes, 'href')
816 self.check_name_id(attributes)
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/
Dmsisupport.c29 DWORD attributes; in CheckDir() local
38 attributes = GetFileAttributesW(wpath); in CheckDir()
39 if (attributes == INVALID_FILE_ATTRIBUTES || in CheckDir()
40 !(attributes & FILE_ATTRIBUTE_DIRECTORY)) in CheckDir()
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/PropertiesTableAttributesDxe/
DPropertiesTableAttributesDxe.uni2 // This module sets default policy for attributes of EfiACPIMemoryNVS and EfiReservedMemoryType.
4 // This module sets EFI_MEMORY_XP for attributes of EfiACPIMemoryNVS and EfiReservedMemoryType
20 …TRACT #language en-US "This module sets default policy for attributes of EfiACPIMemory…
22 …SCRIPTION #language en-US "This module sets EFI_MEMORY_XP for attributes of EfiACPIMemory…
DPropertiesTableAttributesDxeExtra.uni2 // This module sets default policy for attributes of EfiACPIMemoryNVS and EfiReservedMemoryType.
4 // This module sets EFI_MEMORY_XP for attributes of EfiACPIMemoryNVS and EfiReservedMemoryType
DPropertiesTableAttributesDxe.inf2 # This module sets default policy for attributes of EfiACPIMemoryNVS and EfiReservedMemoryType.
4 # This module sets EFI_MEMORY_XP for attributes of EfiACPIMemoryNVS and EfiReservedMemoryType
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_minidom.py177 nodemap = elem.attributes
189 attrs = elem.attributes
246 self.confirm(child.attributes["def"].value == "ghi")
250 self.confirm(child.attributes["jkl"].value == "mno")
252 self.confirm(len(child.attributes) == 2)
256 self.confirm(child.attributes["def"].value == "newval")
258 self.confirm(len(child.attributes) == 2)
265 self.confirm(len(child.attributes) == 0)
267 self.confirm(len(child.attributes) == 1)
268 del child.attributes["def"]
[all …]
Dtest_genericpath.py24 attributes = [] variable in GenericTest
27 for attr in self.common_attributes + self.attributes:
/device/google/marlin/sepolicy/
Dhal_bootctl.te4 # Getting and setting GPT attributes for the bootloader iterates over all the
8 # Get attributes on all the A/B partitions.
18 # Edit the attributes stored in the GPT.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dasdl.py152 def p_type_2(self, (sum, id, _0, attributes, _1)): argument
157 if attributes:
158 attributes.reverse()
159 return Sum(sum, attributes)
278 def __init__(self, types, attributes=None): argument
280 self.attributes = attributes or []
283 if self.attributes is None:
286 return "Sum(%s, %s)" % (self.types, self.attributes)
DPython.asdl50 attributes (int lineno, int col_offset)
84 attributes (int lineno, int col_offset)
105 attributes (int lineno, int col_offset)
Dasdl_c.py168 for field in sum.attributes:
223 self.visit(t, name, sum.attributes)
407 for a in sum.attributes:
415 for a in sum.attributes:
429 args = [f.name.value for f in t.fields] + [a.name.value for a in sum.attributes]
564 if sum.attributes:
566 for a in sum.attributes:
883 if sum.attributes:
885 (name, name, len(sum.attributes)), 1)
1006 for a in sum.attributes:
/device/google/crosshatch-sepolicy/vendor/qcom/common/
Dhal_bootctl.te4 # Getting and setting GPT attributes for the bootloader iterates over all the
8 # Edit the attributes stored in the GPT.
/device/google/bonito-sepolicy/vendor/qcom/common/
Dhal_bootctl.te4 # Getting and setting GPT attributes for the bootloader iterates over all the
8 # Edit the attributes stored in the GPT.
/device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/DtPlatformDxe/
DDtPlatformHii.vfr18 // EFI Variable attributes
32 …ttribute = EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_NON_VOLATILE, // EFI variable attributes
/device/google/wahoo/sepolicy/vendor/
Dhal_bootctl.te4 # Getting and setting GPT attributes for the bootloader iterates over all the
8 # Edit the attributes stored in the GPT.
/device/linaro/bootloader/arm-trusted-firmware/lib/xlat_tables_v2/
Dxlat_tables_internal.c1414 mmap_attr_t *attributes, uint64_t **table_entry, in get_mem_attributes_internal() argument
1462 assert(attributes != NULL); in get_mem_attributes_internal()
1463 *attributes = 0; in get_mem_attributes_internal()
1468 *attributes |= MT_MEMORY; in get_mem_attributes_internal()
1470 *attributes |= MT_NON_CACHEABLE; in get_mem_attributes_internal()
1473 *attributes |= MT_DEVICE; in get_mem_attributes_internal()
1479 *attributes |= MT_RW; in get_mem_attributes_internal()
1484 *attributes |= MT_USER; in get_mem_attributes_internal()
1490 *attributes |= MT_NS; in get_mem_attributes_internal()
1495 *attributes |= MT_EXECUTE_NEVER; in get_mem_attributes_internal()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
Dexpatbuilder.py350 def first_element_handler(self, name, attributes): argument
354 self.start_element_handler(name, attributes)
356 def start_element_handler(self, name, attributes): argument
361 if attributes:
362 for i in range(0, len(attributes), 2):
363 a = minidom.Attr(attributes[i], EMPTY_NAMESPACE,
365 value = attributes[i+1]
743 def start_element_handler(self, name, attributes): argument
772 if attributes:
775 for i in range(0, len(attributes), 2):
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
Dexpatbuilder.py350 def first_element_handler(self, name, attributes): argument
354 self.start_element_handler(name, attributes)
356 def start_element_handler(self, name, attributes): argument
361 if attributes:
362 for i in range(0, len(attributes), 2):
363 a = minidom.Attr(attributes[i], EMPTY_NAMESPACE,
365 value = attributes[i+1]
743 def start_element_handler(self, name, attributes): argument
772 if attributes:
775 for i in range(0, len(attributes), 2):
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/LegacyRegion2Dxe/
DLegacyRegion2Dxe.uni12 // attributes were not actually modified.
29 … For Lock/UnLock/Decode, EFI_SUCCESS is returned although the region's attributes were not actuall…
/device/google/cuttlefish_common/guest/hals/hwcomposer/vsoc-future/
Dhwcomposer.cpp274 uint32_t /*config*/, const uint32_t* attributes, in hwc_getDisplayAttributes() argument
282 for (int i = 0; attributes[i] != HWC_DISPLAY_NO_ATTRIBUTE; i++) { in hwc_getDisplayAttributes()
283 values[i] = vsoc_hwc_attribute(attributes[i]); in hwc_getDisplayAttributes()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
DREADME12 the attributes of the code object followed by a
/device/google/cuttlefish_common/guest/hals/hwcomposer/vsoc/
Dhwcomposer.cpp396 const uint32_t* attributes, argument
406 for (int i = 0; attributes[i] != HWC_DISPLAY_NO_ATTRIBUTE; i++) {
407 values[i] = vsoc_hwc_attribute(pdev, attributes[i]);
/device/google/cuttlefish_common/guest/hals/hwcomposer/cutf_cvm/
Dhwcomposer.cpp387 const uint32_t* attributes, argument
397 for (int i = 0; attributes[i] != HWC_DISPLAY_NO_ATTRIBUTE; i++) {
398 values[i] = vsoc_hwc_attribute(pdev, attributes[i]);
/device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm12CommandLib/
DTpm12NvStorage.c101 Command.PubInfo.permission.attributes = SwapBytes32 (PubInfo->permission.attributes); in Tpm12NvDefineSpace()
/device/linaro/bootloader/arm-trusted-firmware/include/lib/xlat_tables/
Dxlat_tables_v2.h313 mmap_attr_t *attributes);

1234