Home
last modified time | relevance | path

Searched refs:Filter (Results 1 – 16 of 16) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SmbiosMeasurementDxe/
DSmbiosMeasurementDxe.c43 SMBIOS_FILTER_TABLE *Filter; // NULL means all fields member
271 SMBIOS_FILTER_TABLE *Filter; in FilterSmbiosEntry() local
282 if (FilterStruct->Filter == NULL || FilterStruct->FilterCount == 0) { in FilterSmbiosEntry()
286 Filter = FilterStruct->Filter; in FilterSmbiosEntry()
288 … if (((SMBIOS_STRUCTURE *) TableEntry)->Length >= (Filter[Index].Offset + Filter[Index].Size)) { in FilterSmbiosEntry()
292 if ((Filter[Index].Flags & SMBIOS_FILTER_TABLE_FLAG_IS_STRING) != 0) { in FilterSmbiosEntry()
293 CopyMem (&StringId, (UINT8 *)TableEntry + Filter[Index].Offset, sizeof(StringId)); in FilterSmbiosEntry()
303 ZeroMem ((UINT8 *)TableEntry + Filter[Index].Offset, Filter[Index].Size); in FilterSmbiosEntry()
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Library/PlatformIntelBdsLib/
DIntelBdsPlatform.c215 IN FILTER_FUNCTION Filter OPTIONAL, in FilterAndProcess()
252 if (Filter == NULL || Filter (Handles[Idx], DevicePathText)) { in FilterAndProcess()
/device/linaro/bootloader/edk2/ArmPkg/Library/PlatformBootManagerLib/
DPlatformBm.c178 IN FILTER_FUNCTION Filter OPTIONAL, in FilterAndProcess()
215 if (Filter == NULL || Filter (Handles[Idx], DevicePathText)) { in FilterAndProcess()
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/Library/PlatformBootManagerLib/
DPlatformBm.c181 IN FILTER_FUNCTION Filter OPTIONAL, in FilterAndProcess()
218 if (Filter == NULL || Filter (Handles[Idx], DevicePathText)) { in FilterAndProcess()
/device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/
DElf64Convert.c633 BOOLEAN (*Filter)(Elf_Shdr *); in WriteSections64() local
640 Filter = IsTextShdr; in WriteSections64()
643 Filter = IsHiiRsrcShdr; in WriteSections64()
646 Filter = IsDataShdr; in WriteSections64()
657 if ((*Filter)(Shdr)) { in WriteSections64()
717 if (RelShdr->sh_type == SHT_RELA && (*Filter)(SecShdr)) { in WriteSections64()
DElf32Convert.c638 BOOLEAN (*Filter)(Elf_Shdr *); in WriteSections32() local
645 Filter = IsTextShdr; in WriteSections32()
648 Filter = IsHiiRsrcShdr; in WriteSections32()
651 Filter = IsDataShdr; in WriteSections32()
662 if ((*Filter)(Shdr)) { in WriteSections32()
707 if (RelShdr->sh_type == SHT_REL && (*Filter)(SecShdr)) { in WriteSections32()
/device/linaro/bootloader/edk2/ArmVirtPkg/Library/PlatformBootManagerLib/
DPlatformBm.c179 IN FILTER_FUNCTION Filter OPTIONAL, in FilterAndProcess()
216 if (Filter == NULL || Filter (Handles[Idx], DevicePathText)) { in FilterAndProcess()
/device/google/muskie/
DWCNSS_qcom_cfg.ini204 #bit1 IPA PRE Filter enable
347 # 1: Enable standby, 2: Enable Deep sleep, 3: Enable Mcast/Bcast Filter
429 # Value 0: No filtering, 1: Filter all Multicast.
430 # 2: Filter all Broadcast. 3: Filter all Mcast abd Bcast
459 #HW CCE Filter mode
/device/google/taimen/
DWCNSS_qcom_cfg.ini204 #bit1 IPA PRE Filter enable
347 # 1: Enable standby, 2: Enable Deep sleep, 3: Enable Mcast/Bcast Filter
429 # Value 0: No filtering, 1: Filter all Multicast.
430 # 2: Filter all Broadcast. 3: Filter all Mcast abd Bcast
459 #HW CCE Filter mode
/device/google/marlin/
DWCNSS_qcom_cfg.ini270 # 1: Enable standby, 2: Enable Deep sleep, 3: Enable Mcast/Bcast Filter
370 # Value 0: No filtering, 1: Filter all Multicast.
371 # 2: Filter all Broadcast. 3: Filter all Mcast abd Bcast
/device/google/bonito/
DWCNSS_qcom_cfg.ini332 # 1: Enable standby, 2: Enable Deep sleep, 3: Enable Mcast/Bcast Filter
439 #HW CCE Filter mode
555 #bit1 IPA PRE Filter enable
/device/google/crosshatch/
DWCNSS_qcom_cfg.ini332 # 1: Enable standby, 2: Enable Deep sleep, 3: Enable Mcast/Bcast Filter
439 #HW CCE Filter mode
555 #bit1 IPA PRE Filter enable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_logging.py283 filter_ = logging.Filter("spam.eggs")
343 class GarrulousFilter(logging.Filter):
350 class VerySpecificFilter(logging.Filter):
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/
DPxe.h443 IN UINT8 Filter; ///< In: Receive filter value. member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
Dconfig.py669 result = logging.Filter(name)
D__init__.py532 class Filter(object): class