├── .gitignore ├── BaseTools ├── .gitignore ├── Bin │ ├── CYGWIN_NT-5.1-i686 │ │ ├── BootSectImage │ │ ├── BuildEnv │ │ ├── Ecc │ │ ├── EfiLdrImage │ │ ├── EfiRom │ │ ├── GenCrc32 │ │ ├── GenDepex │ │ ├── GenFds │ │ ├── GenFfs │ │ ├── GenFv │ │ ├── GenFw │ │ ├── GenPage │ │ ├── GenSec │ │ ├── GenVtf │ │ ├── GnuGenBootSector │ │ ├── LzmaCompress │ │ ├── LzmaF86Compress │ │ ├── RunBinToolFromBuildDir │ │ ├── RunToolFromSource │ │ ├── Split │ │ ├── TargetTool │ │ ├── TianoCompress │ │ ├── Trim │ │ ├── VfrCompile │ │ ├── VolInfo │ │ ├── armcc_wrapper.py │ │ └── build │ ├── Darwin-i386 │ │ └── Arm │ │ │ ├── DEBUG_XCODE31 │ │ │ └── CompilerIntrinsicsLib.lib │ │ │ ├── DEBUG_XCODE32 │ │ │ └── CompilerIntrinsicsLib.lib │ │ │ ├── RELEASE_XCODE31 │ │ │ └── CompilerIntrinsicsLib.lib │ │ │ └── RELEASE_XCODE32 │ │ │ └── CompilerIntrinsicsLib.lib │ ├── gcc_aarch64_linux_ext_dep.yaml │ ├── gcc_arm_linux_ext_dep.yaml │ ├── gcc_riscv64_unknown_ext_dep.yaml │ ├── iasl_ext_dep.yaml │ └── nasm_ext_dep.yaml ├── BinWrappers │ ├── PosixLike │ │ ├── AmlToC │ │ ├── BPDG │ │ ├── Brotli │ │ ├── BrotliCompress │ │ ├── DevicePath │ │ ├── Ecc │ │ ├── EfiRom │ │ ├── GenCrc32 │ │ ├── GenDepex │ │ ├── GenFds │ │ ├── GenFfs │ │ ├── GenFv │ │ ├── GenFw │ │ ├── GenPatchPcdTable │ │ ├── GenSec │ │ ├── GenerateCapsule │ │ ├── LzmaCompress │ │ ├── LzmaF86Compress │ │ ├── PatchPcdValue │ │ ├── Pkcs7Sign │ │ ├── Rsa2048Sha256GenerateKeys │ │ ├── Rsa2048Sha256Sign │ │ ├── Split │ │ ├── TargetTool │ │ ├── TianoCompress │ │ ├── Trim │ │ ├── UPT │ │ ├── VfrCompile │ │ ├── VolInfo │ │ ├── build │ │ └── posix_path_env.yaml │ └── WindowsLike │ │ ├── AmlToC.bat │ │ ├── BPDG.bat │ │ ├── Ecc.bat │ │ ├── GenDepex.bat │ │ ├── GenFds.bat │ │ ├── GenPatchPcdTable.bat │ │ ├── GenerateCapsule.bat │ │ ├── PatchPcdValue.bat │ │ ├── Pkcs7Sign.bat │ │ ├── Rsa2048Sha256GenerateKeys.bat │ │ ├── Rsa2048Sha256Sign.bat │ │ ├── TargetTool.bat │ │ ├── Trim.bat │ │ ├── UPT.bat │ │ ├── build.bat │ │ └── win_build_tools_path_env.yaml ├── BuildEnv ├── Conf │ ├── Empty_Package_Information_Data_File.ini │ ├── ReadMe.txt │ ├── XMLSchema │ │ └── DistributionPackage.xsd │ ├── build_rule.template │ ├── diff.order │ ├── gitattributes │ ├── target.template │ └── tools_def.template ├── Edk2ToolsBuild.py ├── GNUmakefile ├── Makefile ├── Plugin │ ├── BuildToolsReport │ │ ├── BuildToolsReportGenerator.py │ │ ├── BuildToolsReportGenerator_plug_in.yaml │ │ └── BuildToolsReport_Template.html │ ├── HostBasedUnitTestRunner │ │ ├── HostBasedUnitTestRunner.py │ │ └── HostBasedUnitTestRunner_plug_in.yaml │ ├── LinuxGcc5ToolChain │ │ ├── LinuxGcc5ToolChain.py │ │ └── LinuxGcc5ToolChain_plug_in.yaml │ ├── WindowsResourceCompiler │ │ ├── WinRcPath.py │ │ └── WinRcPath_plug_in.yaml │ └── WindowsVsToolChain │ │ ├── WindowsVsToolChain.py │ │ └── WindowsVsToolChain_plug_in.yaml ├── ReadMe.rst ├── Scripts │ ├── BinToPcd.py │ ├── ConvertFceToStructurePcd.py │ ├── ConvertMasmToNasm.py │ ├── ConvertUni.py │ ├── DetectNotUsedItem.py │ ├── FormatDosFiles.py │ ├── GccBase.lds │ ├── GetMaintainer.py │ ├── GetUtcDateTime.py │ ├── MemoryProfileSymbolGen.py │ ├── PackageDocumentTools │ │ ├── Readme.md │ │ ├── __init__.py │ │ ├── packagedoc_cli.py │ │ ├── packagedocapp.pyw │ │ └── plugins │ │ │ ├── EdkPlugins │ │ │ ├── __init__.py │ │ │ ├── basemodel │ │ │ │ ├── __init__.py │ │ │ │ ├── doxygen.py │ │ │ │ ├── efibinary.py │ │ │ │ ├── ini.py │ │ │ │ ├── inidocview.py │ │ │ │ └── message.py │ │ │ └── edk2 │ │ │ │ ├── __init__.py │ │ │ │ └── model │ │ │ │ ├── __init__.py │ │ │ │ ├── baseobject.py │ │ │ │ ├── dec.py │ │ │ │ ├── doxygengen.py │ │ │ │ ├── doxygengen_spec.py │ │ │ │ ├── dsc.py │ │ │ │ └── inf.py │ │ │ └── __init__.py │ ├── PatchCheck.py │ ├── RunMakefile.py │ ├── RunMakefileSample.mak │ ├── Rvct-Align32.sct │ ├── Rvct-Align4K.sct │ ├── SetVisualStudio.bat │ ├── SetupGit.py │ ├── ShowEnvironment.bat │ ├── SmiHandlerProfileSymbolGen.py │ └── UpdateBuildVersions.py ├── Source │ ├── C │ │ ├── BrotliCompress │ │ │ ├── BrotliCompress.c │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ └── brotli │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── .gitmodules │ │ │ │ ├── .travis.yml │ │ │ │ ├── BUILD │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── MANIFEST.in │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── README │ │ │ │ ├── README.md │ │ │ │ ├── WORKSPACE │ │ │ │ ├── bootstrap │ │ │ │ ├── c │ │ │ │ ├── common │ │ │ │ │ ├── constants.h │ │ │ │ │ ├── context.h │ │ │ │ │ ├── dictionary.bin │ │ │ │ │ ├── dictionary.c │ │ │ │ │ ├── dictionary.h │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── transform.c │ │ │ │ │ ├── transform.h │ │ │ │ │ └── version.h │ │ │ │ ├── dec │ │ │ │ │ ├── bit_reader.c │ │ │ │ │ ├── bit_reader.h │ │ │ │ │ ├── decode.c │ │ │ │ │ ├── huffman.c │ │ │ │ │ ├── huffman.h │ │ │ │ │ ├── prefix.h │ │ │ │ │ ├── state.c │ │ │ │ │ └── state.h │ │ │ │ ├── enc │ │ │ │ │ ├── backward_references.c │ │ │ │ │ ├── backward_references.h │ │ │ │ │ ├── backward_references_hq.c │ │ │ │ │ ├── backward_references_hq.h │ │ │ │ │ ├── backward_references_inc.h │ │ │ │ │ ├── bit_cost.c │ │ │ │ │ ├── bit_cost.h │ │ │ │ │ ├── bit_cost_inc.h │ │ │ │ │ ├── block_encoder_inc.h │ │ │ │ │ ├── block_splitter.c │ │ │ │ │ ├── block_splitter.h │ │ │ │ │ ├── block_splitter_inc.h │ │ │ │ │ ├── brotli_bit_stream.c │ │ │ │ │ ├── brotli_bit_stream.h │ │ │ │ │ ├── cluster.c │ │ │ │ │ ├── cluster.h │ │ │ │ │ ├── cluster_inc.h │ │ │ │ │ ├── command.h │ │ │ │ │ ├── compress_fragment.c │ │ │ │ │ ├── compress_fragment.h │ │ │ │ │ ├── compress_fragment_two_pass.c │ │ │ │ │ ├── compress_fragment_two_pass.h │ │ │ │ │ ├── dictionary_hash.c │ │ │ │ │ ├── dictionary_hash.h │ │ │ │ │ ├── encode.c │ │ │ │ │ ├── encoder_dict.c │ │ │ │ │ ├── encoder_dict.h │ │ │ │ │ ├── entropy_encode.c │ │ │ │ │ ├── entropy_encode.h │ │ │ │ │ ├── entropy_encode_static.h │ │ │ │ │ ├── fast_log.h │ │ │ │ │ ├── find_match_length.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── hash_composite_inc.h │ │ │ │ │ ├── hash_forgetful_chain_inc.h │ │ │ │ │ ├── hash_longest_match64_inc.h │ │ │ │ │ ├── hash_longest_match_inc.h │ │ │ │ │ ├── hash_longest_match_quickly_inc.h │ │ │ │ │ ├── hash_rolling_inc.h │ │ │ │ │ ├── hash_to_binary_tree_inc.h │ │ │ │ │ ├── histogram.c │ │ │ │ │ ├── histogram.h │ │ │ │ │ ├── histogram_inc.h │ │ │ │ │ ├── literal_cost.c │ │ │ │ │ ├── literal_cost.h │ │ │ │ │ ├── memory.c │ │ │ │ │ ├── memory.h │ │ │ │ │ ├── metablock.c │ │ │ │ │ ├── metablock.h │ │ │ │ │ ├── metablock_inc.h │ │ │ │ │ ├── params.h │ │ │ │ │ ├── prefix.h │ │ │ │ │ ├── quality.h │ │ │ │ │ ├── ringbuffer.h │ │ │ │ │ ├── static_dict.c │ │ │ │ │ ├── static_dict.h │ │ │ │ │ ├── static_dict_lut.h │ │ │ │ │ ├── utf8_util.c │ │ │ │ │ ├── utf8_util.h │ │ │ │ │ └── write_bits.h │ │ │ │ ├── fuzz │ │ │ │ │ ├── decode_fuzzer.c │ │ │ │ │ ├── run_decode_fuzzer.c │ │ │ │ │ └── test_fuzzer.sh │ │ │ │ ├── include │ │ │ │ │ └── brotli │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ ├── port.h │ │ │ │ │ │ └── types.h │ │ │ │ └── tools │ │ │ │ │ ├── brotli.c │ │ │ │ │ └── brotli.md │ │ │ │ ├── compiler_config_setting.bzl │ │ │ │ ├── configure │ │ │ │ ├── configure-cmake │ │ │ │ ├── configure.ac │ │ │ │ ├── csharp │ │ │ │ ├── injected_code.txt │ │ │ │ ├── org │ │ │ │ │ └── brotli │ │ │ │ │ │ └── dec │ │ │ │ │ │ ├── BitReader.cs │ │ │ │ │ │ ├── BitReaderTest.cs │ │ │ │ │ │ ├── BrotliInputStream.cs │ │ │ │ │ │ ├── BrotliRuntimeException.cs │ │ │ │ │ │ ├── Context.cs │ │ │ │ │ │ ├── Decode.cs │ │ │ │ │ │ ├── DecodeTest.cs │ │ │ │ │ │ ├── Dictionary.cs │ │ │ │ │ │ ├── DictionaryTest.cs │ │ │ │ │ │ ├── Huffman.cs │ │ │ │ │ │ ├── HuffmanTreeGroup.cs │ │ │ │ │ │ ├── IntReader.cs │ │ │ │ │ │ ├── Prefix.cs │ │ │ │ │ │ ├── RunningState.cs │ │ │ │ │ │ ├── State.cs │ │ │ │ │ │ ├── SynthTest.cs │ │ │ │ │ │ ├── Transform.cs │ │ │ │ │ │ ├── TransformTest.cs │ │ │ │ │ │ ├── Utils.cs │ │ │ │ │ │ └── WordTransformType.cs │ │ │ │ ├── sharpen.cfg │ │ │ │ └── transpile.sh │ │ │ │ ├── docs │ │ │ │ ├── brotli-comparison-study-2015-09-22.pdf │ │ │ │ ├── brotli.1 │ │ │ │ ├── decode.h.3 │ │ │ │ ├── encode.h.3 │ │ │ │ └── types.h.3 │ │ │ │ ├── fetch-spec │ │ │ │ └── shared-brotli-fetch-spec.txt │ │ │ │ ├── go │ │ │ │ ├── BUILD │ │ │ │ ├── WORKSPACE │ │ │ │ └── cbrotli │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── cbrotli_test.go │ │ │ │ │ ├── cgo.go │ │ │ │ │ ├── reader.go │ │ │ │ │ └── writer.go │ │ │ │ ├── java │ │ │ │ ├── BUILD │ │ │ │ ├── WORKSPACE │ │ │ │ └── org │ │ │ │ │ └── brotli │ │ │ │ │ ├── dec │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── BitReader.java │ │ │ │ │ ├── BitReaderTest.java │ │ │ │ │ ├── BrotliInputStream.java │ │ │ │ │ ├── BrotliRuntimeException.java │ │ │ │ │ ├── Context.java │ │ │ │ │ ├── Decode.java │ │ │ │ │ ├── DecodeTest.java │ │ │ │ │ ├── Dictionary.java │ │ │ │ │ ├── DictionaryData.java │ │ │ │ │ ├── DictionaryTest.java │ │ │ │ │ ├── EagerStreamTest.java │ │ │ │ │ ├── Huffman.java │ │ │ │ │ ├── SetDictionaryTest.java │ │ │ │ │ ├── State.java │ │ │ │ │ ├── SynthTest.java │ │ │ │ │ ├── Transform.java │ │ │ │ │ ├── TransformTest.java │ │ │ │ │ ├── Utils.java │ │ │ │ │ ├── build_defs.bzl │ │ │ │ │ ├── pom.xml │ │ │ │ │ └── proguard.pgcfg │ │ │ │ │ ├── integration │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── BrotliJniTestBase.java │ │ │ │ │ ├── BundleChecker.java │ │ │ │ │ ├── BundleHelper.java │ │ │ │ │ ├── fuzz_data.zip │ │ │ │ │ ├── pom.xml │ │ │ │ │ ├── test_corpus.zip │ │ │ │ │ └── test_data.zip │ │ │ │ │ ├── pom.xml │ │ │ │ │ └── wrapper │ │ │ │ │ ├── common │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── BrotliCommon.java │ │ │ │ │ ├── CommonJNI.java │ │ │ │ │ ├── SetRfcDictionaryTest.java │ │ │ │ │ ├── SetZeroDictionaryTest.java │ │ │ │ │ └── common_jni.cc │ │ │ │ │ ├── dec │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── BrotliDecoderChannel.java │ │ │ │ │ ├── BrotliDecoderChannelTest.java │ │ │ │ │ ├── BrotliInputStream.java │ │ │ │ │ ├── BrotliInputStreamTest.java │ │ │ │ │ ├── Decoder.java │ │ │ │ │ ├── DecoderJNI.java │ │ │ │ │ ├── DecoderTest.java │ │ │ │ │ ├── EagerStreamTest.java │ │ │ │ │ └── decoder_jni.cc │ │ │ │ │ └── enc │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── BrotliEncoderChannel.java │ │ │ │ │ ├── BrotliEncoderChannelTest.java │ │ │ │ │ ├── BrotliOutputStream.java │ │ │ │ │ ├── BrotliOutputStreamTest.java │ │ │ │ │ ├── EmptyInputTest.java │ │ │ │ │ ├── Encoder.java │ │ │ │ │ ├── EncoderJNI.java │ │ │ │ │ ├── EncoderTest.java │ │ │ │ │ └── encoder_jni.cc │ │ │ │ ├── js │ │ │ │ ├── BUILD │ │ │ │ ├── WORKSPACE │ │ │ │ ├── decode.js │ │ │ │ ├── decode.min.js │ │ │ │ ├── decode_test.js │ │ │ │ └── polyfill.js │ │ │ │ ├── premake5.lua │ │ │ │ ├── python │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── _brotli.cc │ │ │ │ ├── bro.py │ │ │ │ ├── brotli.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _test_utils.py │ │ │ │ │ ├── bro_test.py │ │ │ │ │ ├── compress_test.py │ │ │ │ │ ├── compressor_test.py │ │ │ │ │ ├── decompress_test.py │ │ │ │ │ └── decompressor_test.py │ │ │ │ ├── research │ │ │ │ ├── BUILD │ │ │ │ ├── BUILD.libdivsufsort │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── WORKSPACE │ │ │ │ ├── brotli_decoder.c │ │ │ │ ├── brotlidump.py │ │ │ │ ├── deorummolae.cc │ │ │ │ ├── deorummolae.h │ │ │ │ ├── dictionary_generator.cc │ │ │ │ ├── draw_diff.cc │ │ │ │ ├── draw_histogram.cc │ │ │ │ ├── durchschlag.cc │ │ │ │ ├── durchschlag.h │ │ │ │ ├── esaxx │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── README │ │ │ │ │ ├── cmdline.h │ │ │ │ │ ├── enumSubstring.cpp │ │ │ │ │ ├── esa.hxx │ │ │ │ │ ├── sais.hxx │ │ │ │ │ ├── waf │ │ │ │ │ └── wscript │ │ │ │ ├── find_opt_references.cc │ │ │ │ ├── img │ │ │ │ │ ├── enwik9_brotli.png │ │ │ │ │ ├── enwik9_diff.png │ │ │ │ │ └── enwik9_opt.png │ │ │ │ ├── libdivsufsort │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CMakeModules │ │ │ │ │ │ ├── AppendCompilerFlags.cmake │ │ │ │ │ │ ├── CheckFunctionKeywords.cmake │ │ │ │ │ │ ├── CheckLFS.cmake │ │ │ │ │ │ ├── ProjectCPack.cmake │ │ │ │ │ │ └── cmake_uninstall.cmake.in │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── VERSION.cmake │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── bwt.c │ │ │ │ │ │ ├── mksary.c │ │ │ │ │ │ ├── sasearch.c │ │ │ │ │ │ ├── suftest.c │ │ │ │ │ │ └── unbwt.c │ │ │ │ │ ├── include │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── config.h.cmake │ │ │ │ │ │ ├── divsufsort.h.cmake │ │ │ │ │ │ ├── divsufsort_private.h │ │ │ │ │ │ └── lfs.h.cmake │ │ │ │ │ └── pkgconfig │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── libdivsufsort.pc.cmake │ │ │ │ ├── read_dist.h │ │ │ │ ├── sieve.cc │ │ │ │ └── sieve.h │ │ │ │ ├── scripts │ │ │ │ ├── .bintray.json │ │ │ │ ├── .configure-custom.sh │ │ │ │ ├── .travis.sh │ │ │ │ ├── appveyor.yml │ │ │ │ ├── dictionary │ │ │ │ │ ├── README.md │ │ │ │ │ ├── step-01-download-rfc.py │ │ │ │ │ ├── step-02-rfc-to-bin.py │ │ │ │ │ ├── step-03-validate-bin.py │ │ │ │ │ └── step-04-generate-java-literals.py │ │ │ │ ├── fix-win-bazel-build.py │ │ │ │ ├── libbrotlicommon.pc.in │ │ │ │ ├── libbrotlidec.pc.in │ │ │ │ ├── libbrotlienc.pc.in │ │ │ │ └── sources.lst │ │ │ │ ├── setup.cfg │ │ │ │ ├── setup.py │ │ │ │ └── tests │ │ │ │ ├── Makefile │ │ │ │ ├── compatibility_test.sh │ │ │ │ ├── roundtrip_test.sh │ │ │ │ ├── run-compatibility-test.cmake │ │ │ │ ├── run-roundtrip-test.cmake │ │ │ │ └── testdata │ │ │ │ ├── 10x10y │ │ │ │ ├── 10x10y.compressed │ │ │ │ ├── 64x │ │ │ │ ├── 64x.compressed │ │ │ │ ├── alice29.txt │ │ │ │ ├── alice29.txt.compressed │ │ │ │ ├── asyoulik.txt │ │ │ │ ├── asyoulik.txt.compressed │ │ │ │ ├── backward65536 │ │ │ │ ├── backward65536.compressed │ │ │ │ ├── bb.binast │ │ │ │ ├── compressed_file │ │ │ │ ├── compressed_file.compressed │ │ │ │ ├── compressed_repeated │ │ │ │ ├── compressed_repeated.compressed │ │ │ │ ├── empty │ │ │ │ ├── empty.compressed │ │ │ │ ├── empty.compressed.00 │ │ │ │ ├── empty.compressed.01 │ │ │ │ ├── empty.compressed.02 │ │ │ │ ├── empty.compressed.03 │ │ │ │ ├── empty.compressed.04 │ │ │ │ ├── empty.compressed.05 │ │ │ │ ├── empty.compressed.06 │ │ │ │ ├── empty.compressed.07 │ │ │ │ ├── empty.compressed.08 │ │ │ │ ├── empty.compressed.09 │ │ │ │ ├── empty.compressed.10 │ │ │ │ ├── empty.compressed.11 │ │ │ │ ├── empty.compressed.12 │ │ │ │ ├── empty.compressed.13 │ │ │ │ ├── empty.compressed.14 │ │ │ │ ├── empty.compressed.15 │ │ │ │ ├── empty.compressed.16 │ │ │ │ ├── empty.compressed.17 │ │ │ │ ├── empty.compressed.18 │ │ │ │ ├── lcet10.txt │ │ │ │ ├── lcet10.txt.compressed │ │ │ │ ├── mapsdatazrh │ │ │ │ ├── mapsdatazrh.compressed │ │ │ │ ├── monkey │ │ │ │ ├── monkey.compressed │ │ │ │ ├── plrabn12.txt │ │ │ │ ├── plrabn12.txt.compressed │ │ │ │ ├── quickfox │ │ │ │ ├── quickfox.compressed │ │ │ │ ├── quickfox_repeated │ │ │ │ ├── quickfox_repeated.compressed │ │ │ │ ├── random_chunks │ │ │ │ ├── random_org_10k.bin │ │ │ │ ├── random_org_10k.bin.compressed │ │ │ │ ├── ukkonooa │ │ │ │ ├── ukkonooa.compressed │ │ │ │ ├── x │ │ │ │ ├── x.compressed │ │ │ │ ├── x.compressed.00 │ │ │ │ ├── x.compressed.01 │ │ │ │ ├── x.compressed.02 │ │ │ │ ├── x.compressed.03 │ │ │ │ ├── xyzzy │ │ │ │ ├── xyzzy.compressed │ │ │ │ ├── zeros │ │ │ │ └── zeros.compressed │ │ ├── Common │ │ │ ├── BasePeCoff.c │ │ │ ├── BinderFuncs.c │ │ │ ├── BinderFuncs.h │ │ │ ├── CommonLib.c │ │ │ ├── CommonLib.h │ │ │ ├── Compress.h │ │ │ ├── Crc32.c │ │ │ ├── Crc32.h │ │ │ ├── Decompress.c │ │ │ ├── Decompress.h │ │ │ ├── EfiCompress.c │ │ │ ├── EfiUtilityMsgs.c │ │ │ ├── EfiUtilityMsgs.h │ │ │ ├── FirmwareVolumeBuffer.c │ │ │ ├── FirmwareVolumeBufferLib.h │ │ │ ├── FvLib.c │ │ │ ├── FvLib.h │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── MemoryFile.c │ │ │ ├── MemoryFile.h │ │ │ ├── MyAlloc.c │ │ │ ├── MyAlloc.h │ │ │ ├── OsPath.c │ │ │ ├── OsPath.h │ │ │ ├── ParseGuidedSectionTools.c │ │ │ ├── ParseGuidedSectionTools.h │ │ │ ├── ParseInf.c │ │ │ ├── ParseInf.h │ │ │ ├── PcdValueCommon.c │ │ │ ├── PcdValueCommon.h │ │ │ ├── PeCoffLib.h │ │ │ ├── PeCoffLoaderEx.c │ │ │ ├── SimpleFileParsing.c │ │ │ ├── SimpleFileParsing.h │ │ │ ├── StringFuncs.c │ │ │ ├── StringFuncs.h │ │ │ ├── TianoCompress.c │ │ │ └── WinNtInclude.h │ │ ├── DevicePath │ │ │ ├── DevicePath.c │ │ │ ├── DevicePathFromText.c │ │ │ ├── DevicePathUtilities.c │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── UefiDevicePathLib.c │ │ │ └── UefiDevicePathLib.h │ │ ├── EfiRom │ │ │ ├── EfiRom.c │ │ │ ├── EfiRom.h │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ │ ├── GNUmakefile │ │ ├── GenCrc32 │ │ │ ├── GNUmakefile │ │ │ ├── GenCrc32.c │ │ │ └── Makefile │ │ ├── GenFfs │ │ │ ├── GNUmakefile │ │ │ ├── GenFfs.c │ │ │ └── Makefile │ │ ├── GenFv │ │ │ ├── GNUmakefile │ │ │ ├── GenFv.c │ │ │ ├── GenFvInternalLib.c │ │ │ ├── GenFvInternalLib.h │ │ │ └── Makefile │ │ ├── GenFw │ │ │ ├── Elf32Convert.c │ │ │ ├── Elf32Convert.h │ │ │ ├── Elf64Convert.c │ │ │ ├── Elf64Convert.h │ │ │ ├── ElfConvert.c │ │ │ ├── ElfConvert.h │ │ │ ├── GNUmakefile │ │ │ ├── GenFw.c │ │ │ ├── GenFw.h │ │ │ ├── Makefile │ │ │ ├── elf32.h │ │ │ ├── elf64.h │ │ │ └── elf_common.h │ │ ├── GenSec │ │ │ ├── GNUmakefile │ │ │ ├── GenSec.c │ │ │ └── Makefile │ │ ├── Include │ │ │ ├── AArch64 │ │ │ │ └── ProcessorBind.h │ │ │ ├── Arm │ │ │ │ └── ProcessorBind.h │ │ │ ├── Common │ │ │ │ ├── BaseTypes.h │ │ │ │ ├── BuildVersion.h │ │ │ │ ├── MdeModuleHii.h │ │ │ │ ├── PiFirmwareFile.h │ │ │ │ ├── PiFirmwareVolume.h │ │ │ │ ├── UefiBaseTypes.h │ │ │ │ ├── UefiCapsule.h │ │ │ │ ├── UefiInternalFormRepresentation.h │ │ │ │ ├── UefiMultiPhase.h │ │ │ │ ├── VariableFormat.h │ │ │ │ └── WorkingBlockHeader.h │ │ │ ├── Guid │ │ │ │ ├── FfsSectionAlignmentPadding.h │ │ │ │ ├── PcAnsi.h │ │ │ │ └── PiFirmwareFileSystem.h │ │ │ ├── Ia32 │ │ │ │ └── ProcessorBind.h │ │ │ ├── IndustryStandard │ │ │ │ ├── Acpi.h │ │ │ │ ├── Acpi1_0.h │ │ │ │ ├── Acpi2_0.h │ │ │ │ ├── Acpi3_0.h │ │ │ │ ├── Bluetooth.h │ │ │ │ ├── EfiPci.h │ │ │ │ ├── MemoryMappedConfigurationSpaceAccessTable.h │ │ │ │ ├── PeImage.h │ │ │ │ ├── pci22.h │ │ │ │ ├── pci23.h │ │ │ │ └── pci30.h │ │ │ ├── Protocol │ │ │ │ ├── DevicePath.h │ │ │ │ ├── DevicePathUtilities.h │ │ │ │ ├── GraphicsOutput.h │ │ │ │ ├── GuidedSectionExtraction.h │ │ │ │ ├── HiiFramework.h │ │ │ │ └── UgaDraw.h │ │ │ ├── RiscV64 │ │ │ │ └── ProcessorBind.h │ │ │ └── X64 │ │ │ │ └── ProcessorBind.h │ │ ├── LzmaCompress │ │ │ ├── GNUmakefile │ │ │ ├── LZMA-SDK-README.txt │ │ │ ├── LzmaCompress.c │ │ │ ├── LzmaF86Compress.bat │ │ │ ├── Makefile │ │ │ └── Sdk │ │ │ │ ├── C │ │ │ │ ├── 7zFile.c │ │ │ │ ├── 7zFile.h │ │ │ │ ├── 7zStream.c │ │ │ │ ├── 7zTypes.h │ │ │ │ ├── 7zVersion.h │ │ │ │ ├── Alloc.c │ │ │ │ ├── Alloc.h │ │ │ │ ├── Bra.h │ │ │ │ ├── Bra86.c │ │ │ │ ├── Compiler.h │ │ │ │ ├── CpuArch.h │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzFindMt.c │ │ │ │ ├── LzFindMt.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaEnc.c │ │ │ │ ├── LzmaEnc.h │ │ │ │ ├── Precomp.h │ │ │ │ ├── Threads.c │ │ │ │ └── Threads.h │ │ │ │ └── DOC │ │ │ │ ├── lzma-history.txt │ │ │ │ └── lzma-sdk.txt │ │ ├── Makefile │ │ ├── Makefiles │ │ │ ├── NmakeSubdirs.bat │ │ │ ├── NmakeSubdirs.py │ │ │ ├── app.makefile │ │ │ ├── footer.makefile │ │ │ ├── header.makefile │ │ │ ├── lib.makefile │ │ │ ├── ms.app │ │ │ ├── ms.common │ │ │ ├── ms.lib │ │ │ └── ms.rule │ │ ├── PyEfiCompressor │ │ │ ├── EfiCompressor.c │ │ │ ├── Makefile │ │ │ └── setup.py │ │ ├── Split │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ └── Split.c │ │ ├── TianoCompress │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── TianoCompress.c │ │ │ └── TianoCompress.h │ │ ├── VfrCompile │ │ │ ├── EfiVfr.h │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── Pccts │ │ │ │ ├── CHANGES_FROM_131.txt │ │ │ │ ├── CHANGES_FROM_133.txt │ │ │ │ ├── CHANGES_FROM_133_BEFORE_MR13.txt │ │ │ │ ├── CHANGES_SUMMARY.txt │ │ │ │ ├── KNOWN_PROBLEMS.txt │ │ │ │ ├── MPW_Read_Me │ │ │ │ ├── Makefile │ │ │ │ ├── NOTES.bcc │ │ │ │ ├── NOTES.msvc │ │ │ │ ├── README │ │ │ │ ├── RIGHTS │ │ │ │ ├── antlr │ │ │ │ │ ├── AntlrDDK.mak │ │ │ │ │ ├── AntlrMS.mak │ │ │ │ │ ├── AntlrPPC.mak │ │ │ │ │ ├── README │ │ │ │ │ ├── antlr.1 │ │ │ │ │ ├── antlr.c │ │ │ │ │ ├── antlr.g │ │ │ │ │ ├── antlr.r │ │ │ │ │ ├── antlr1.txt │ │ │ │ │ ├── bits.c │ │ │ │ │ ├── build.c │ │ │ │ │ ├── dumpcycles.c │ │ │ │ │ ├── dumpnode.c │ │ │ │ │ ├── egman.c │ │ │ │ │ ├── err.c │ │ │ │ │ ├── fcache.c │ │ │ │ │ ├── fset.c │ │ │ │ │ ├── fset2.c │ │ │ │ │ ├── gen.c │ │ │ │ │ ├── generic.h │ │ │ │ │ ├── globals.c │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── lex.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.cygwin │ │ │ │ │ ├── makefile1 │ │ │ │ │ ├── misc.c │ │ │ │ │ ├── mode.h │ │ │ │ │ ├── mrhoist.c │ │ │ │ │ ├── parser.dlg │ │ │ │ │ ├── pred.c │ │ │ │ │ ├── proto.h │ │ │ │ │ ├── scan.c │ │ │ │ │ ├── stdpccts.h │ │ │ │ │ ├── syn.h │ │ │ │ │ └── tokens.h │ │ │ │ ├── dlg │ │ │ │ │ ├── DlgDDK.mak │ │ │ │ │ ├── DlgMS.mak │ │ │ │ │ ├── DlgPPC.mak │ │ │ │ │ ├── automata.c │ │ │ │ │ ├── dlg.1 │ │ │ │ │ ├── dlg.h │ │ │ │ │ ├── dlg.r │ │ │ │ │ ├── dlg1.txt │ │ │ │ │ ├── dlg_a.c │ │ │ │ │ ├── dlg_p.c │ │ │ │ │ ├── dlg_p.g │ │ │ │ │ ├── err.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.cygwin │ │ │ │ │ ├── makefile1 │ │ │ │ │ ├── mode.h │ │ │ │ │ ├── output.c │ │ │ │ │ ├── parser.dlg │ │ │ │ │ ├── relabel.c │ │ │ │ │ ├── stdpccts.h │ │ │ │ │ ├── support.c │ │ │ │ │ └── tokens.h │ │ │ │ ├── h │ │ │ │ │ ├── AParser.cpp │ │ │ │ │ ├── AParser.h │ │ │ │ │ ├── ASTBase.cpp │ │ │ │ │ ├── ASTBase.h │ │ │ │ │ ├── ATokPtr.h │ │ │ │ │ ├── ATokPtrImpl.h │ │ │ │ │ ├── AToken.h │ │ │ │ │ ├── ATokenBuffer.cpp │ │ │ │ │ ├── ATokenBuffer.h │ │ │ │ │ ├── ATokenStream.h │ │ │ │ │ ├── BufFileInput.cpp │ │ │ │ │ ├── BufFileInput.h │ │ │ │ │ ├── DLG_stream_input.h │ │ │ │ │ ├── DLexer.h │ │ │ │ │ ├── DLexerBase.cpp │ │ │ │ │ ├── DLexerBase.h │ │ │ │ │ ├── PBlackBox.h │ │ │ │ │ ├── PCCTSAST.cpp │ │ │ │ │ ├── PCCTSAST.h │ │ │ │ │ ├── SList.h │ │ │ │ │ ├── antlr.h │ │ │ │ │ ├── ast.c │ │ │ │ │ ├── ast.h │ │ │ │ │ ├── charbuf.h │ │ │ │ │ ├── charptr.c │ │ │ │ │ ├── charptr.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── dlgauto.h │ │ │ │ │ ├── dlgdef.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── int.h │ │ │ │ │ ├── pccts_assert.h │ │ │ │ │ ├── pccts_iostream.h │ │ │ │ │ ├── pccts_istream.h │ │ │ │ │ ├── pccts_setjmp.h │ │ │ │ │ ├── pccts_stdarg.h │ │ │ │ │ ├── pccts_stdio.h │ │ │ │ │ ├── pccts_stdlib.h │ │ │ │ │ ├── pccts_string.h │ │ │ │ │ ├── pcctscfg.h │ │ │ │ │ ├── pcnames.bat │ │ │ │ │ └── slist.cpp │ │ │ │ ├── history.ps │ │ │ │ ├── history.txt │ │ │ │ ├── makefile.old │ │ │ │ └── support │ │ │ │ │ ├── genmk │ │ │ │ │ ├── genmk.c │ │ │ │ │ ├── genmk_old.c │ │ │ │ │ └── makefile │ │ │ │ │ ├── rexpr │ │ │ │ │ ├── makefile │ │ │ │ │ ├── rexpr.c │ │ │ │ │ ├── rexpr.h │ │ │ │ │ └── test.c │ │ │ │ │ ├── set │ │ │ │ │ ├── set.c │ │ │ │ │ └── set.h │ │ │ │ │ └── sym │ │ │ │ │ ├── sym.c │ │ │ │ │ └── template.h │ │ │ ├── VfrCompiler.cpp │ │ │ ├── VfrCompiler.h │ │ │ ├── VfrError.cpp │ │ │ ├── VfrError.h │ │ │ ├── VfrFormPkg.cpp │ │ │ ├── VfrFormPkg.h │ │ │ ├── VfrSyntax.g │ │ │ ├── VfrUtilityLib.cpp │ │ │ └── VfrUtilityLib.h │ │ └── VolInfo │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── VolInfo.c │ │ │ └── VolInfo.h │ └── Python │ │ ├── AmlToC │ │ └── AmlToC.py │ │ ├── AutoGen │ │ ├── AutoGen.py │ │ ├── AutoGenWorker.py │ │ ├── BuildEngine.py │ │ ├── DataPipe.py │ │ ├── GenC.py │ │ ├── GenDepex.py │ │ ├── GenMake.py │ │ ├── GenPcdDb.py │ │ ├── GenVar.py │ │ ├── IdfClassObject.py │ │ ├── IncludesAutoGen.py │ │ ├── InfSectionParser.py │ │ ├── ModuleAutoGen.py │ │ ├── ModuleAutoGenHelper.py │ │ ├── PlatformAutoGen.py │ │ ├── StrGather.py │ │ ├── UniClassObject.py │ │ ├── ValidCheckingInfoObject.py │ │ ├── WorkspaceAutoGen.py │ │ └── __init__.py │ │ ├── BPDG │ │ ├── BPDG.py │ │ ├── GenVpd.py │ │ ├── StringTable.py │ │ └── __init__.py │ │ ├── Capsule │ │ ├── GenerateCapsule.py │ │ ├── GenerateWindowsDriver.py │ │ └── WindowsCapsuleSupportHelper.py │ │ ├── Common │ │ ├── BuildToolError.py │ │ ├── BuildVersion.py │ │ ├── DataType.py │ │ ├── Edk2 │ │ │ ├── Capsule │ │ │ │ ├── FmpPayloadHeader.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── EdkLogger.py │ │ ├── Expression.py │ │ ├── GlobalData.py │ │ ├── LongFilePathOs.py │ │ ├── LongFilePathOsPath.py │ │ ├── LongFilePathSupport.py │ │ ├── Misc.py │ │ ├── MultipleWorkspace.py │ │ ├── Parsing.py │ │ ├── RangeExpression.py │ │ ├── StringUtils.py │ │ ├── TargetTxtClassObject.py │ │ ├── ToolDefClassObject.py │ │ ├── Uefi │ │ │ ├── Capsule │ │ │ │ ├── CapsuleDependency.py │ │ │ │ ├── FmpAuthHeader.py │ │ │ │ ├── FmpCapsuleHeader.py │ │ │ │ ├── UefiCapsuleHeader.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── VariableAttributes.py │ │ ├── VpdInfoFile.py │ │ ├── __init__.py │ │ └── caching.py │ │ ├── CommonDataClass │ │ ├── CommonClass.py │ │ ├── DataClass.py │ │ ├── Exceptions.py │ │ ├── FdfClass.py │ │ └── __init__.py │ │ ├── Ecc │ │ ├── C.g │ │ ├── CParser3 │ │ │ ├── CLexer.py │ │ │ ├── CParser.py │ │ │ └── __init__.py │ │ ├── CParser4 │ │ │ ├── C.g4 │ │ │ ├── CLexer.py │ │ │ ├── CListener.py │ │ │ ├── CParser.py │ │ │ └── __init__.py │ │ ├── Check.py │ │ ├── CodeFragment.py │ │ ├── CodeFragmentCollector.py │ │ ├── Configuration.py │ │ ├── Database.py │ │ ├── EccGlobalData.py │ │ ├── EccMain.py │ │ ├── EccToolError.py │ │ ├── Exception.py │ │ ├── FileProfile.py │ │ ├── MetaDataParser.py │ │ ├── MetaFileWorkspace │ │ │ ├── MetaDataTable.py │ │ │ ├── MetaFileParser.py │ │ │ ├── MetaFileTable.py │ │ │ └── __init__.py │ │ ├── ParserWarning.py │ │ ├── Xml │ │ │ ├── XmlRoutines.py │ │ │ └── __init__.py │ │ ├── __init__.py │ │ ├── c.py │ │ ├── config.ini │ │ └── exception.xml │ │ ├── Eot │ │ ├── CParser3 │ │ │ ├── CLexer.py │ │ │ ├── CParser.py │ │ │ └── __init__.py │ │ ├── CParser4 │ │ │ ├── CLexer.py │ │ │ ├── CListener.py │ │ │ ├── CParser.py │ │ │ └── __init__.py │ │ ├── CodeFragment.py │ │ ├── CodeFragmentCollector.py │ │ ├── Database.py │ │ ├── EfiCompressor.pyd │ │ ├── EotGlobalData.py │ │ ├── EotMain.py │ │ ├── EotToolError.py │ │ ├── FileProfile.py │ │ ├── Identification.py │ │ ├── InfParserLite.py │ │ ├── LzmaCompressor.pyd │ │ ├── Parser.py │ │ ├── ParserWarning.py │ │ ├── Report.py │ │ ├── __init__.py │ │ └── c.py │ │ ├── GNUmakefile │ │ ├── GenFds │ │ ├── AprioriSection.py │ │ ├── Capsule.py │ │ ├── CapsuleData.py │ │ ├── CompressSection.py │ │ ├── DataSection.py │ │ ├── DepexSection.py │ │ ├── EfiSection.py │ │ ├── Fd.py │ │ ├── FdfParser.py │ │ ├── Ffs.py │ │ ├── FfsFileStatement.py │ │ ├── FfsInfStatement.py │ │ ├── Fv.py │ │ ├── FvImageSection.py │ │ ├── GenFds.py │ │ ├── GenFdsGlobalVariable.py │ │ ├── GuidSection.py │ │ ├── OptRomFileStatement.py │ │ ├── OptRomInfStatement.py │ │ ├── OptionRom.py │ │ ├── Region.py │ │ ├── Rule.py │ │ ├── RuleComplexFile.py │ │ ├── RuleSimpleFile.py │ │ ├── Section.py │ │ ├── UiSection.py │ │ ├── VerSection.py │ │ └── __init__.py │ │ ├── GenPatchPcdTable │ │ ├── GenPatchPcdTable.py │ │ └── __init__.py │ │ ├── Makefile │ │ ├── PatchPcdValue │ │ ├── PatchPcdValue.py │ │ └── __init__.py │ │ ├── Pkcs7Sign │ │ ├── Pkcs7Sign.py │ │ ├── Readme.md │ │ ├── TestCert.pem │ │ ├── TestCert.pub.pem │ │ ├── TestRoot.cer │ │ ├── TestRoot.cer.gEfiSecurityPkgTokenSpaceGuid.PcdPkcs7CertBuffer.inc │ │ ├── TestRoot.cer.gFmpDevicePkgTokenSpaceGuid.PcdFmpDevicePkcs7CertBufferXdr.inc │ │ ├── TestRoot.pem │ │ ├── TestRoot.pub.pem │ │ ├── TestSub.pem │ │ └── TestSub.pub.pem │ │ ├── Rsa2048Sha256Sign │ │ ├── Rsa2048Sha256GenerateKeys.py │ │ ├── Rsa2048Sha256Sign.py │ │ ├── TestSigningPrivateKey.pem │ │ ├── TestSigningPublicKey.bin │ │ └── TestSigningPublicKey.txt │ │ ├── Table │ │ ├── Table.py │ │ ├── TableDataModel.py │ │ ├── TableDec.py │ │ ├── TableDsc.py │ │ ├── TableEotReport.py │ │ ├── TableFdf.py │ │ ├── TableFile.py │ │ ├── TableFunction.py │ │ ├── TableIdentifier.py │ │ ├── TableInf.py │ │ ├── TablePcd.py │ │ ├── TableQuery.py │ │ ├── TableReport.py │ │ └── __init__.py │ │ ├── TargetTool │ │ ├── TargetTool.py │ │ └── __init__.py │ │ ├── Trim │ │ └── Trim.py │ │ ├── UPT │ │ ├── BuildVersion.py │ │ ├── Core │ │ │ ├── DependencyRules.py │ │ │ ├── DistributionPackageClass.py │ │ │ ├── FileHook.py │ │ │ ├── IpiDb.py │ │ │ ├── PackageFile.py │ │ │ └── __init__.py │ │ ├── GenMetaFile │ │ │ ├── GenDecFile.py │ │ │ ├── GenInfFile.py │ │ │ ├── GenMetaFileMisc.py │ │ │ ├── GenXmlFile.py │ │ │ └── __init__.py │ │ ├── InstallPkg.py │ │ ├── InventoryWs.py │ │ ├── Library │ │ │ ├── CommentGenerating.py │ │ │ ├── CommentParsing.py │ │ │ ├── DataType.py │ │ │ ├── ExpressionValidate.py │ │ │ ├── GlobalData.py │ │ │ ├── Misc.py │ │ │ ├── ParserValidate.py │ │ │ ├── Parsing.py │ │ │ ├── StringUtils.py │ │ │ ├── UniClassObject.py │ │ │ ├── Xml │ │ │ │ ├── XmlRoutines.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── Logger │ │ │ ├── Log.py │ │ │ ├── StringTable.py │ │ │ ├── ToolError.py │ │ │ └── __init__.py │ │ ├── MkPkg.py │ │ ├── Object │ │ │ ├── POM │ │ │ │ ├── CommonObject.py │ │ │ │ ├── ModuleObject.py │ │ │ │ ├── PackageObject.py │ │ │ │ └── __init__.py │ │ │ ├── Parser │ │ │ │ ├── DecObject.py │ │ │ │ ├── InfBinaryObject.py │ │ │ │ ├── InfBuildOptionObject.py │ │ │ │ ├── InfCommonObject.py │ │ │ │ ├── InfDefineCommonObject.py │ │ │ │ ├── InfDefineObject.py │ │ │ │ ├── InfDepexObject.py │ │ │ │ ├── InfGuidObject.py │ │ │ │ ├── InfHeaderObject.py │ │ │ │ ├── InfLibraryClassesObject.py │ │ │ │ ├── InfMisc.py │ │ │ │ ├── InfPackagesObject.py │ │ │ │ ├── InfPcdObject.py │ │ │ │ ├── InfPpiObject.py │ │ │ │ ├── InfProtocolObject.py │ │ │ │ ├── InfSoucesObject.py │ │ │ │ ├── InfUserExtensionObject.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── Parser │ │ │ ├── DecParser.py │ │ │ ├── DecParserMisc.py │ │ │ ├── InfAsBuiltProcess.py │ │ │ ├── InfBinarySectionParser.py │ │ │ ├── InfBuildOptionSectionParser.py │ │ │ ├── InfDefineSectionParser.py │ │ │ ├── InfDepexSectionParser.py │ │ │ ├── InfGuidPpiProtocolSectionParser.py │ │ │ ├── InfLibrarySectionParser.py │ │ │ ├── InfPackageSectionParser.py │ │ │ ├── InfParser.py │ │ │ ├── InfParserMisc.py │ │ │ ├── InfPcdSectionParser.py │ │ │ ├── InfSectionParser.py │ │ │ ├── InfSourceSectionParser.py │ │ │ └── __init__.py │ │ ├── PomAdapter │ │ │ ├── DecPomAlignment.py │ │ │ ├── InfPomAlignment.py │ │ │ ├── InfPomAlignmentMisc.py │ │ │ └── __init__.py │ │ ├── ReplacePkg.py │ │ ├── RmPkg.py │ │ ├── TestInstall.py │ │ ├── UPT.py │ │ ├── UnitTest │ │ │ ├── CommentGeneratingUnitTest.py │ │ │ ├── CommentParsingUnitTest.py │ │ │ ├── DecParserTest.py │ │ │ ├── DecParserUnitTest.py │ │ │ └── InfBinarySectionTest.py │ │ └── Xml │ │ │ ├── CommonXml.py │ │ │ ├── GuidProtocolPpiXml.py │ │ │ ├── IniToXml.py │ │ │ ├── ModuleSurfaceAreaXml.py │ │ │ ├── PackageSurfaceAreaXml.py │ │ │ ├── PcdXml.py │ │ │ ├── XmlParser.py │ │ │ ├── XmlParserMisc.py │ │ │ └── __init__.py │ │ ├── Workspace │ │ ├── BuildClassObject.py │ │ ├── DecBuildData.py │ │ ├── DscBuildData.py │ │ ├── InfBuildData.py │ │ ├── MetaDataTable.py │ │ ├── MetaFileCommentParser.py │ │ ├── MetaFileParser.py │ │ ├── MetaFileTable.py │ │ ├── WorkspaceCommon.py │ │ ├── WorkspaceDatabase.py │ │ └── __init__.py │ │ ├── basetool_tiano_python_path_env.yaml │ │ ├── build │ │ ├── BuildReport.py │ │ ├── __init__.py │ │ ├── build.py │ │ └── buildoptions.py │ │ └── sitecustomize.py ├── Tests │ ├── CToolsTests.py │ ├── CheckPythonSyntax.py │ ├── CheckUnicodeSourceFiles.py │ ├── GNUmakefile │ ├── PythonTest.py │ ├── PythonToolsTests.py │ ├── RunTests.py │ ├── TestRegularExpression.py │ ├── TestTools.py │ └── TianoCompress.py ├── UserManuals │ ├── Build_Utility_Man_Page.rtf │ ├── EfiRom_Utility_Man_Page.rtf │ ├── GenCrc32_Utility_Man_Page.rtf │ ├── GenDepex_Utility_Man_Page.rtf │ ├── GenFds_Utility_Man_Page.rtf │ ├── GenFfs_Utility_Man_Page.rtf │ ├── GenFv_Utility_Man_Page.rtf │ ├── GenFw_Utility_Man_Page.rtf │ ├── GenPatchPcdTable_Utility_Man_Page.rtf │ ├── GenSec_Utility_Man_Page.rtf │ ├── Intel_UEFI_Packaging_Tool_Man_Page.rtf │ ├── LzmaCompress_Utility_Man_Page.rtf │ ├── PatchPcdValue_Utility_Man_Page.rtf │ ├── SplitFile_Utility_Man_Page.rtf │ ├── TargetTool_Utility_Man_Page.rtf │ ├── TianoCompress_Utility_Man_Page.rtf │ ├── Trim_Utility_Man_Page.rtf │ ├── UtilityManPage_template.rtf │ ├── VfrCompiler_Utility_Man_Page.rtf │ └── VolInfo_Utility_Man_Page.rtf ├── basetools_calling_path_env.yaml ├── basetools_path_env.yaml ├── get_vsvars.bat ├── set_vsprefix_envs.bat └── toolsetup.bat ├── Conf └── .keep ├── IntelUndiPkg ├── AdapterInformation.c ├── AdapterInformation.h ├── Brand.c ├── ComponentName.c ├── ComponentName.h ├── Decode.c ├── Decode.h ├── DeviceSupport.c ├── DeviceSupport.h ├── Dma.c ├── Dma.h ├── DriverConfiguration.c ├── DriverConfiguration.h ├── Init.c ├── Init.h ├── IntelGbe │ ├── intelgbe_api.c │ ├── intelgbe_api.h │ ├── intelgbe_defines.h │ ├── intelgbe_phy.c │ ├── intelgbe_stmmac.c │ ├── intelgbe_stmmac.h │ ├── marvell_88e1512.c │ ├── marvell_88e1512.h │ ├── marvell_88e2110.c │ ├── marvell_88e2110.h │ ├── maxlinear_gpyxxx.c │ ├── maxlinear_gpyxxx.h │ └── mii_regs.h ├── IntelGigUndiDxe.inf ├── IntelGigUndiPkg.dsc ├── Intelgbe.c ├── Intelgbe.h ├── Intelgbe_osdep.c ├── Intelgbe_osdep.h ├── StartStop.c ├── StartStop.h └── Version.h ├── LICENSE ├── MdeModulePkg ├── Application │ ├── BootManagerMenuApp │ │ ├── BootManagerMenu.c │ │ ├── BootManagerMenu.h │ │ ├── BootManagerMenuApp.inf │ │ ├── BootManagerMenuApp.uni │ │ ├── BootManagerMenuAppExtra.uni │ │ └── BootManagerMenuStrings.uni │ ├── CapsuleApp │ │ ├── AppSupport.c │ │ ├── CapsuleApp.c │ │ ├── CapsuleApp.h │ │ ├── CapsuleApp.inf │ │ ├── CapsuleApp.uni │ │ ├── CapsuleAppExtra.uni │ │ ├── CapsuleDump.c │ │ └── CapsuleOnDisk.c │ ├── DumpDynPcd │ │ ├── DumpDynPcd.c │ │ ├── DumpDynPcd.inf │ │ └── DumpDynPcdStr.uni │ ├── HelloWorld │ │ ├── HelloWorld.c │ │ ├── HelloWorld.inf │ │ ├── HelloWorld.uni │ │ ├── HelloWorldExtra.uni │ │ └── HelloWorldStr.uni │ ├── MemoryProfileInfo │ │ ├── MemoryProfileInfo.c │ │ ├── MemoryProfileInfo.inf │ │ ├── MemoryProfileInfo.uni │ │ └── MemoryProfileInfoExtra.uni │ ├── SmiHandlerProfileInfo │ │ ├── SmiHandlerProfileInfo.c │ │ ├── SmiHandlerProfileInfo.inf │ │ ├── SmiHandlerProfileInfo.uni │ │ └── SmiHandlerProfileInfoExtra.uni │ ├── UiApp │ │ ├── FrontPage.c │ │ ├── FrontPage.h │ │ ├── FrontPageCustomizedUi.c │ │ ├── FrontPageCustomizedUi.h │ │ ├── FrontPageCustomizedUiSupport.c │ │ ├── FrontPageCustomizedUiSupport.h │ │ ├── FrontPageStrings.uni │ │ ├── FrontPageVfr.Vfr │ │ ├── String.c │ │ ├── String.h │ │ ├── Ui.h │ │ ├── UiApp.inf │ │ ├── UiApp.uni │ │ └── UiAppExtra.uni │ └── VariableInfo │ │ ├── VariableInfo.c │ │ ├── VariableInfo.inf │ │ ├── VariableInfo.uni │ │ └── VariableInfoExtra.uni ├── Bus │ ├── Ata │ │ ├── AhciPei │ │ │ ├── AhciMode.c │ │ │ ├── AhciPei.c │ │ │ ├── AhciPei.h │ │ │ ├── AhciPei.inf │ │ │ ├── AhciPei.uni │ │ │ ├── AhciPeiBlockIo.c │ │ │ ├── AhciPeiBlockIo.h │ │ │ ├── AhciPeiExtra.uni │ │ │ ├── AhciPeiPassThru.c │ │ │ ├── AhciPeiPassThru.h │ │ │ ├── AhciPeiS3.c │ │ │ ├── AhciPeiStorageSecurity.c │ │ │ ├── AhciPeiStorageSecurity.h │ │ │ ├── DevicePath.c │ │ │ └── DmaMem.c │ │ ├── AtaAtapiPassThru │ │ │ ├── AhciMode.c │ │ │ ├── AhciMode.h │ │ │ ├── AtaAtapiPassThru.c │ │ │ ├── AtaAtapiPassThru.h │ │ │ ├── AtaAtapiPassThru.inf │ │ │ ├── AtaAtapiPassThruDxe.uni │ │ │ ├── AtaAtapiPassThruDxeExtra.uni │ │ │ ├── ComponentName.c │ │ │ ├── IdeMode.c │ │ │ └── IdeMode.h │ │ └── AtaBusDxe │ │ │ ├── AtaBus.c │ │ │ ├── AtaBus.h │ │ │ ├── AtaBusDxe.inf │ │ │ ├── AtaBusDxe.uni │ │ │ ├── AtaBusDxeExtra.uni │ │ │ ├── AtaPassThruExecute.c │ │ │ └── ComponentName.c │ ├── I2c │ │ └── I2cDxe │ │ │ ├── I2cBus.c │ │ │ ├── I2cBusDxe.inf │ │ │ ├── I2cBusDxe.uni │ │ │ ├── I2cBusDxeExtra.uni │ │ │ ├── I2cDxe.c │ │ │ ├── I2cDxe.h │ │ │ ├── I2cDxe.inf │ │ │ ├── I2cDxe.uni │ │ │ ├── I2cDxeExtra.uni │ │ │ ├── I2cHost.c │ │ │ ├── I2cHostDxe.inf │ │ │ ├── I2cHostDxe.uni │ │ │ └── I2cHostDxeExtra.uni │ ├── Isa │ │ ├── IsaBusDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── IsaBusDxe.c │ │ │ ├── IsaBusDxe.h │ │ │ ├── IsaBusDxe.inf │ │ │ ├── IsaBusDxe.uni │ │ │ └── IsaBusDxeExtra.uni │ │ ├── Ps2KeyboardDxe │ │ │ ├── ComponentName.c │ │ │ ├── Ps2KbdCtrller.c │ │ │ ├── Ps2KbdTextIn.c │ │ │ ├── Ps2Keyboard.c │ │ │ ├── Ps2Keyboard.h │ │ │ ├── Ps2KeyboardDxe.inf │ │ │ ├── Ps2KeyboardDxe.uni │ │ │ └── Ps2KeyboardDxeExtra.uni │ │ └── Ps2MouseDxe │ │ │ ├── CommPs2.c │ │ │ ├── CommPs2.h │ │ │ ├── ComponentName.c │ │ │ ├── Ps2Mouse.c │ │ │ ├── Ps2Mouse.h │ │ │ ├── Ps2MouseDxe.inf │ │ │ ├── Ps2MouseDxe.uni │ │ │ └── Ps2MouseDxeExtra.uni │ ├── Pci │ │ ├── EhciDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── Ehci.c │ │ │ ├── Ehci.h │ │ │ ├── EhciDebug.c │ │ │ ├── EhciDebug.h │ │ │ ├── EhciDxe.inf │ │ │ ├── EhciDxe.uni │ │ │ ├── EhciDxeExtra.uni │ │ │ ├── EhciReg.c │ │ │ ├── EhciReg.h │ │ │ ├── EhciSched.c │ │ │ ├── EhciSched.h │ │ │ ├── EhciUrb.c │ │ │ ├── EhciUrb.h │ │ │ ├── UsbHcMem.c │ │ │ └── UsbHcMem.h │ │ ├── EhciPei │ │ │ ├── DmaMem.c │ │ │ ├── EhcPeim.c │ │ │ ├── EhcPeim.h │ │ │ ├── EhciPei.inf │ │ │ ├── EhciPei.uni │ │ │ ├── EhciPeiExtra.uni │ │ │ ├── EhciReg.h │ │ │ ├── EhciSched.c │ │ │ ├── EhciSched.h │ │ │ ├── EhciUrb.c │ │ │ ├── EhciUrb.h │ │ │ ├── UsbHcMem.c │ │ │ └── UsbHcMem.h │ │ ├── IdeBusPei │ │ │ ├── AtapiPeim.c │ │ │ ├── AtapiPeim.h │ │ │ ├── IdeBusPei.inf │ │ │ ├── IdeBusPei.uni │ │ │ └── IdeBusPeiExtra.uni │ │ ├── IncompatiblePciDeviceSupportDxe │ │ │ ├── IncompatiblePciDeviceSupport.c │ │ │ ├── IncompatiblePciDeviceSupport.uni │ │ │ ├── IncompatiblePciDeviceSupportDxe.inf │ │ │ └── IncompatiblePciDeviceSupportExtra.uni │ │ ├── NonDiscoverablePciDeviceDxe │ │ │ ├── ComponentName.c │ │ │ ├── NonDiscoverablePciDeviceDxe.c │ │ │ ├── NonDiscoverablePciDeviceDxe.inf │ │ │ ├── NonDiscoverablePciDeviceIo.c │ │ │ └── NonDiscoverablePciDeviceIo.h │ │ ├── NvmExpressDxe │ │ │ ├── ComponentName.c │ │ │ ├── NvmExpress.c │ │ │ ├── NvmExpress.h │ │ │ ├── NvmExpressBlockIo.c │ │ │ ├── NvmExpressBlockIo.h │ │ │ ├── NvmExpressDiskInfo.c │ │ │ ├── NvmExpressDiskInfo.h │ │ │ ├── NvmExpressDxe.inf │ │ │ ├── NvmExpressDxe.uni │ │ │ ├── NvmExpressDxeExtra.uni │ │ │ ├── NvmExpressHci.c │ │ │ ├── NvmExpressHci.h │ │ │ └── NvmExpressPassthru.c │ │ ├── NvmExpressPei │ │ │ ├── DevicePath.c │ │ │ ├── DmaMem.c │ │ │ ├── NvmExpressPei.c │ │ │ ├── NvmExpressPei.h │ │ │ ├── NvmExpressPei.inf │ │ │ ├── NvmExpressPei.uni │ │ │ ├── NvmExpressPeiBlockIo.c │ │ │ ├── NvmExpressPeiBlockIo.h │ │ │ ├── NvmExpressPeiExtra.uni │ │ │ ├── NvmExpressPeiHci.c │ │ │ ├── NvmExpressPeiHci.h │ │ │ ├── NvmExpressPeiPassThru.c │ │ │ ├── NvmExpressPeiPassThru.h │ │ │ ├── NvmExpressPeiS3.c │ │ │ ├── NvmExpressPeiStorageSecurity.c │ │ │ └── NvmExpressPeiStorageSecurity.h │ │ ├── PciBusDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── PciBus.c │ │ │ ├── PciBus.h │ │ │ ├── PciBusDxe.inf │ │ │ ├── PciBusDxe.uni │ │ │ ├── PciBusDxeExtra.uni │ │ │ ├── PciCommand.c │ │ │ ├── PciCommand.h │ │ │ ├── PciDeviceSupport.c │ │ │ ├── PciDeviceSupport.h │ │ │ ├── PciDriverOverride.c │ │ │ ├── PciDriverOverride.h │ │ │ ├── PciEnumerator.c │ │ │ ├── PciEnumerator.h │ │ │ ├── PciEnumeratorSupport.c │ │ │ ├── PciEnumeratorSupport.h │ │ │ ├── PciHotPlugSupport.c │ │ │ ├── PciHotPlugSupport.h │ │ │ ├── PciIo.c │ │ │ ├── PciIo.h │ │ │ ├── PciLib.c │ │ │ ├── PciLib.h │ │ │ ├── PciOptionRomSupport.c │ │ │ ├── PciOptionRomSupport.h │ │ │ ├── PciPowerManagement.c │ │ │ ├── PciPowerManagement.h │ │ │ ├── PciResourceSupport.c │ │ │ ├── PciResourceSupport.h │ │ │ ├── PciRomTable.c │ │ │ └── PciRomTable.h │ │ ├── PciHostBridgeDxe │ │ │ ├── PciHostBridge.c │ │ │ ├── PciHostBridge.h │ │ │ ├── PciHostBridgeDxe.inf │ │ │ ├── PciHostResource.h │ │ │ ├── PciRootBridge.h │ │ │ └── PciRootBridgeIo.c │ │ ├── PciSioSerialDxe │ │ │ ├── ComponentName.c │ │ │ ├── PciSioSerialDxe.inf │ │ │ ├── PciSioSerialDxe.uni │ │ │ ├── PciSioSerialDxeExtra.uni │ │ │ ├── Serial.c │ │ │ ├── Serial.h │ │ │ └── SerialIo.c │ │ ├── SataControllerDxe │ │ │ ├── ComponentName.c │ │ │ ├── SataController.c │ │ │ ├── SataController.h │ │ │ ├── SataControllerDxe.inf │ │ │ ├── SataControllerDxe.uni │ │ │ └── SataControllerDxeExtra.uni │ │ ├── SdMmcPciHcDxe │ │ │ ├── ComponentName.c │ │ │ ├── EmmcDevice.c │ │ │ ├── SdDevice.c │ │ │ ├── SdMmcPciHcDxe.c │ │ │ ├── SdMmcPciHcDxe.h │ │ │ ├── SdMmcPciHcDxe.inf │ │ │ ├── SdMmcPciHcDxe.uni │ │ │ ├── SdMmcPciHcDxeExtra.uni │ │ │ ├── SdMmcPciHci.c │ │ │ └── SdMmcPciHci.h │ │ ├── SdMmcPciHcPei │ │ │ ├── SdMmcPciHcPei.c │ │ │ ├── SdMmcPciHcPei.h │ │ │ ├── SdMmcPciHcPei.inf │ │ │ ├── SdMmcPciHcPei.uni │ │ │ └── SdMmcPciHcPeiExtra.uni │ │ ├── UfsPciHcDxe │ │ │ ├── ComponentName.c │ │ │ ├── UfsPciHcDxe.c │ │ │ ├── UfsPciHcDxe.h │ │ │ ├── UfsPciHcDxe.inf │ │ │ ├── UfsPciHcDxe.uni │ │ │ └── UfsPciHcDxeExtra.uni │ │ ├── UfsPciHcPei │ │ │ ├── UfsPciHcPei.c │ │ │ ├── UfsPciHcPei.h │ │ │ ├── UfsPciHcPei.inf │ │ │ ├── UfsPciHcPei.uni │ │ │ └── UfsPciHcPeiExtra.uni │ │ ├── UhciDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── Uhci.c │ │ │ ├── Uhci.h │ │ │ ├── UhciDebug.c │ │ │ ├── UhciDebug.h │ │ │ ├── UhciDxe.inf │ │ │ ├── UhciDxe.uni │ │ │ ├── UhciDxeExtra.uni │ │ │ ├── UhciQueue.c │ │ │ ├── UhciQueue.h │ │ │ ├── UhciReg.c │ │ │ ├── UhciReg.h │ │ │ ├── UhciSched.c │ │ │ ├── UhciSched.h │ │ │ ├── UsbHcMem.c │ │ │ └── UsbHcMem.h │ │ ├── UhciPei │ │ │ ├── DmaMem.c │ │ │ ├── UhcPeim.c │ │ │ ├── UhcPeim.h │ │ │ ├── UhciPei.inf │ │ │ ├── UhciPei.uni │ │ │ └── UhciPeiExtra.uni │ │ ├── XhciDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── UsbHcMem.c │ │ │ ├── UsbHcMem.h │ │ │ ├── Xhci.c │ │ │ ├── Xhci.h │ │ │ ├── XhciDxe.inf │ │ │ ├── XhciDxe.uni │ │ │ ├── XhciDxeExtra.uni │ │ │ ├── XhciReg.c │ │ │ ├── XhciReg.h │ │ │ ├── XhciSched.c │ │ │ └── XhciSched.h │ │ └── XhciPei │ │ │ ├── DmaMem.c │ │ │ ├── UsbHcMem.c │ │ │ ├── UsbHcMem.h │ │ │ ├── XhcPeim.c │ │ │ ├── XhcPeim.h │ │ │ ├── XhciPei.inf │ │ │ ├── XhciPei.uni │ │ │ ├── XhciPeiExtra.uni │ │ │ ├── XhciReg.h │ │ │ ├── XhciSched.c │ │ │ └── XhciSched.h │ ├── Scsi │ │ ├── ScsiBusDxe │ │ │ ├── ComponentName.c │ │ │ ├── ScsiBus.c │ │ │ ├── ScsiBus.h │ │ │ ├── ScsiBus.uni │ │ │ ├── ScsiBusDxe.inf │ │ │ └── ScsiBusExtra.uni │ │ └── ScsiDiskDxe │ │ │ ├── ComponentName.c │ │ │ ├── ScsiDisk.c │ │ │ ├── ScsiDisk.h │ │ │ ├── ScsiDisk.uni │ │ │ ├── ScsiDiskDxe.inf │ │ │ └── ScsiDiskExtra.uni │ ├── Sd │ │ ├── EmmcBlockIoPei │ │ │ ├── DmaMem.c │ │ │ ├── EmmcBlockIoPei.c │ │ │ ├── EmmcBlockIoPei.h │ │ │ ├── EmmcBlockIoPei.inf │ │ │ ├── EmmcBlockIoPei.uni │ │ │ ├── EmmcBlockIoPeiExtra.uni │ │ │ ├── EmmcHcMem.c │ │ │ ├── EmmcHcMem.h │ │ │ ├── EmmcHci.c │ │ │ └── EmmcHci.h │ │ ├── EmmcDxe │ │ │ ├── ComponentName.c │ │ │ ├── EmmcBlockIo.c │ │ │ ├── EmmcBlockIo.h │ │ │ ├── EmmcDiskInfo.c │ │ │ ├── EmmcDiskInfo.h │ │ │ ├── EmmcDxe.c │ │ │ ├── EmmcDxe.h │ │ │ ├── EmmcDxe.inf │ │ │ ├── EmmcDxe.uni │ │ │ └── EmmcDxeExtra.uni │ │ ├── SdBlockIoPei │ │ │ ├── DmaMem.c │ │ │ ├── SdBlockIoPei.c │ │ │ ├── SdBlockIoPei.h │ │ │ ├── SdBlockIoPei.inf │ │ │ ├── SdBlockIoPei.uni │ │ │ ├── SdBlockIoPeiExtra.uni │ │ │ ├── SdHcMem.c │ │ │ ├── SdHcMem.h │ │ │ ├── SdHci.c │ │ │ └── SdHci.h │ │ └── SdDxe │ │ │ ├── ComponentName.c │ │ │ ├── SdBlockIo.c │ │ │ ├── SdBlockIo.h │ │ │ ├── SdDiskInfo.c │ │ │ ├── SdDiskInfo.h │ │ │ ├── SdDxe.c │ │ │ ├── SdDxe.h │ │ │ ├── SdDxe.inf │ │ │ ├── SdDxe.uni │ │ │ └── SdDxeExtra.uni │ ├── Ufs │ │ ├── UfsBlockIoPei │ │ │ ├── DmaMem.c │ │ │ ├── UfsBlockIoPei.c │ │ │ ├── UfsBlockIoPei.h │ │ │ ├── UfsBlockIoPei.inf │ │ │ ├── UfsBlockIoPei.uni │ │ │ ├── UfsBlockIoPeiExtra.uni │ │ │ ├── UfsHcMem.c │ │ │ ├── UfsHcMem.h │ │ │ ├── UfsHci.c │ │ │ └── UfsHci.h │ │ └── UfsPassThruDxe │ │ │ ├── ComponentName.c │ │ │ ├── UfsDevConfigProtocol.c │ │ │ ├── UfsPassThru.c │ │ │ ├── UfsPassThru.h │ │ │ ├── UfsPassThru.uni │ │ │ ├── UfsPassThruDxe.inf │ │ │ ├── UfsPassThruExtra.uni │ │ │ ├── UfsPassThruHci.c │ │ │ └── UfsPassThruHci.h │ └── Usb │ │ ├── UsbBotPei │ │ ├── BotPeim.c │ │ ├── BotPeim.h │ │ ├── PeiAtapi.c │ │ ├── PeiUsbLib.c │ │ ├── PeiUsbLib.h │ │ ├── UsbBotPei.inf │ │ ├── UsbBotPei.uni │ │ ├── UsbBotPeiExtra.uni │ │ ├── UsbBotPeim.c │ │ ├── UsbBotPeim.h │ │ └── UsbPeim.h │ │ ├── UsbBusDxe │ │ ├── ComponentName.c │ │ ├── UsbBus.c │ │ ├── UsbBus.h │ │ ├── UsbBusDxe.inf │ │ ├── UsbBusDxe.uni │ │ ├── UsbBusDxeExtra.uni │ │ ├── UsbDesc.c │ │ ├── UsbDesc.h │ │ ├── UsbEnumer.c │ │ ├── UsbEnumer.h │ │ ├── UsbHub.c │ │ ├── UsbHub.h │ │ ├── UsbUtility.c │ │ └── UsbUtility.h │ │ ├── UsbBusPei │ │ ├── HubPeim.c │ │ ├── HubPeim.h │ │ ├── PeiUsbLib.c │ │ ├── PeiUsbLib.h │ │ ├── UsbBusPei.inf │ │ ├── UsbBusPei.uni │ │ ├── UsbBusPeiExtra.uni │ │ ├── UsbIoPeim.c │ │ ├── UsbPeim.c │ │ └── UsbPeim.h │ │ ├── UsbKbDxe │ │ ├── ComponentName.c │ │ ├── EfiKey.c │ │ ├── EfiKey.h │ │ ├── KeyBoard.c │ │ ├── KeyBoard.h │ │ ├── UsbKbDxe.inf │ │ ├── UsbKbDxe.uni │ │ └── UsbKbDxeExtra.uni │ │ ├── UsbMassStorageDxe │ │ ├── ComponentName.c │ │ ├── UsbMass.h │ │ ├── UsbMassBoot.c │ │ ├── UsbMassBoot.h │ │ ├── UsbMassBot.c │ │ ├── UsbMassBot.h │ │ ├── UsbMassCbi.c │ │ ├── UsbMassCbi.h │ │ ├── UsbMassDiskInfo.c │ │ ├── UsbMassDiskInfo.h │ │ ├── UsbMassImpl.c │ │ ├── UsbMassImpl.h │ │ ├── UsbMassStorageDxe.inf │ │ ├── UsbMassStorageDxe.uni │ │ └── UsbMassStorageDxeExtra.uni │ │ ├── UsbMouseAbsolutePointerDxe │ │ ├── ComponentName.c │ │ ├── MouseHid.c │ │ ├── UsbMouseAbsolutePointer.c │ │ ├── UsbMouseAbsolutePointer.h │ │ ├── UsbMouseAbsolutePointerDxe.inf │ │ ├── UsbMouseAbsolutePointerDxe.uni │ │ └── UsbMouseAbsolutePointerDxeExtra.uni │ │ └── UsbMouseDxe │ │ ├── ComponentName.c │ │ ├── MouseHid.c │ │ ├── UsbMouse.c │ │ ├── UsbMouse.h │ │ ├── UsbMouseDxe.inf │ │ ├── UsbMouseDxe.uni │ │ └── UsbMouseDxeExtra.uni ├── Core │ ├── Dxe │ │ ├── Dispatcher │ │ │ ├── Dependency.c │ │ │ └── Dispatcher.c │ │ ├── DxeCore.uni │ │ ├── DxeCoreExtra.uni │ │ ├── DxeMain.h │ │ ├── DxeMain.inf │ │ ├── DxeMain │ │ │ ├── DxeMain.c │ │ │ └── DxeProtocolNotify.c │ │ ├── Event │ │ │ ├── Event.c │ │ │ ├── Event.h │ │ │ ├── Timer.c │ │ │ └── Tpl.c │ │ ├── FwVol │ │ │ ├── Ffs.c │ │ │ ├── FwVol.c │ │ │ ├── FwVolAttrib.c │ │ │ ├── FwVolDriver.h │ │ │ ├── FwVolRead.c │ │ │ └── FwVolWrite.c │ │ ├── FwVolBlock │ │ │ ├── FwVolBlock.c │ │ │ └── FwVolBlock.h │ │ ├── Gcd │ │ │ ├── Gcd.c │ │ │ └── Gcd.h │ │ ├── Hand │ │ │ ├── DriverSupport.c │ │ │ ├── Handle.c │ │ │ ├── Handle.h │ │ │ ├── Locate.c │ │ │ └── Notify.c │ │ ├── Image │ │ │ ├── Image.c │ │ │ └── Image.h │ │ ├── Library │ │ │ └── Library.c │ │ ├── Mem │ │ │ ├── HeapGuard.c │ │ │ ├── HeapGuard.h │ │ │ ├── Imem.h │ │ │ ├── MemData.c │ │ │ ├── MemoryProfileRecord.c │ │ │ ├── Page.c │ │ │ └── Pool.c │ │ ├── Misc │ │ │ ├── DebugImageInfo.c │ │ │ ├── InstallConfigurationTable.c │ │ │ ├── MemoryAttributesTable.c │ │ │ ├── MemoryProtection.c │ │ │ ├── SetWatchdogTimer.c │ │ │ └── Stall.c │ │ └── SectionExtraction │ │ │ └── CoreSectionExtraction.c │ ├── DxeIplPeim │ │ ├── Arm │ │ │ └── DxeLoadFunc.c │ │ ├── DxeIpl.h │ │ ├── DxeIpl.inf │ │ ├── DxeIpl.uni │ │ ├── DxeIplExtra.uni │ │ ├── DxeLoad.c │ │ ├── Ebc │ │ │ └── DxeLoadFunc.c │ │ ├── Ia32 │ │ │ ├── DxeLoadFunc.c │ │ │ └── IdtVectorAsm.nasm │ │ ├── RiscV64 │ │ │ └── DxeLoadFunc.c │ │ └── X64 │ │ │ ├── DxeLoadFunc.c │ │ │ ├── VirtualMemory.c │ │ │ └── VirtualMemory.h │ ├── Pei │ │ ├── BootMode │ │ │ └── BootMode.c │ │ ├── CpuIo │ │ │ └── CpuIo.c │ │ ├── Dependency │ │ │ ├── Dependency.c │ │ │ └── Dependency.h │ │ ├── Dispatcher │ │ │ └── Dispatcher.c │ │ ├── FwVol │ │ │ ├── FwVol.c │ │ │ └── FwVol.h │ │ ├── Hob │ │ │ └── Hob.c │ │ ├── Image │ │ │ └── Image.c │ │ ├── Memory │ │ │ └── MemoryServices.c │ │ ├── PciCfg2 │ │ │ └── PciCfg2.c │ │ ├── PeiCore.uni │ │ ├── PeiCoreExtra.uni │ │ ├── PeiMain.h │ │ ├── PeiMain.inf │ │ ├── PeiMain │ │ │ └── PeiMain.c │ │ ├── Ppi │ │ │ └── Ppi.c │ │ ├── Reset │ │ │ └── Reset.c │ │ ├── Security │ │ │ └── Security.c │ │ └── StatusCode │ │ │ └── StatusCode.c │ ├── PiSmmCore │ │ ├── Dependency.c │ │ ├── Dispatcher.c │ │ ├── Handle.c │ │ ├── HeapGuard.c │ │ ├── HeapGuard.h │ │ ├── InstallConfigurationTable.c │ │ ├── Locate.c │ │ ├── MemoryAttributesTable.c │ │ ├── Notify.c │ │ ├── Page.c │ │ ├── PiSmmCore.c │ │ ├── PiSmmCore.h │ │ ├── PiSmmCore.inf │ │ ├── PiSmmCore.uni │ │ ├── PiSmmCoreExtra.uni │ │ ├── PiSmmCorePrivateData.h │ │ ├── PiSmmIpl.c │ │ ├── PiSmmIpl.inf │ │ ├── PiSmmIpl.uni │ │ ├── PiSmmIplExtra.uni │ │ ├── Pool.c │ │ ├── Smi.c │ │ ├── SmiHandlerProfile.c │ │ └── SmramProfileRecord.c │ └── RuntimeDxe │ │ ├── Crc32.c │ │ ├── Runtime.c │ │ ├── Runtime.h │ │ ├── RuntimeDxe.inf │ │ ├── RuntimeDxe.uni │ │ └── RuntimeDxeExtra.uni ├── Include │ ├── Guid │ │ ├── AcpiS3Context.h │ │ ├── BootScriptExecutorVariable.h │ │ ├── CapsuleVendor.h │ │ ├── ConnectConInEvent.h │ │ ├── ConsoleInDevice.h │ │ ├── ConsoleOutDevice.h │ │ ├── Crc32GuidedSectionExtraction.h │ │ ├── DebugMask.h │ │ ├── DriverSampleHii.h │ │ ├── EndOfS3Resume.h │ │ ├── EventExitBootServiceFailed.h │ │ ├── ExtendedFirmwarePerformance.h │ │ ├── FaultTolerantWrite.h │ │ ├── FirmwarePerformance.h │ │ ├── HiiBootMaintenanceFormset.h │ │ ├── HiiResourceSampleHii.h │ │ ├── IdleLoopEvent.h │ │ ├── LoadModuleAtFixedAddress.h │ │ ├── LzmaDecompress.h │ │ ├── MdeModuleHii.h │ │ ├── MdeModulePkgTokenSpace.h │ │ ├── MemoryProfile.h │ │ ├── MemoryStatusCodeRecord.h │ │ ├── MemoryTypeInformation.h │ │ ├── MigratedFvInfo.h │ │ ├── MtcVendor.h │ │ ├── NonDiscoverableDevice.h │ │ ├── PcdDataBaseHobGuid.h │ │ ├── PcdDataBaseSignatureGuid.h │ │ ├── Performance.h │ │ ├── PerformanceMeasurement.h │ │ ├── PiSmmCommunicationRegionTable.h │ │ ├── PiSmmMemoryAttributesTable.h │ │ ├── PlatDriOverrideHii.h │ │ ├── PlatformHasAcpi.h │ │ ├── RamDiskHii.h │ │ ├── RecoveryDevice.h │ │ ├── S3SmmInitDone.h │ │ ├── S3StorageDeviceInitList.h │ │ ├── SerialPortLibVendor.h │ │ ├── SmiHandlerProfile.h │ │ ├── SmmLockBox.h │ │ ├── SmmVariableCommon.h │ │ ├── StandardErrorDevice.h │ │ ├── StatusCodeCallbackGuid.h │ │ ├── StatusCodeDataTypeDebug.h │ │ ├── StatusCodeDataTypeVariable.h │ │ ├── SystemNvDataGuid.h │ │ ├── TtyTerm.h │ │ ├── UsbKeyBoardLayout.h │ │ ├── VarCheckPolicyMmi.h │ │ ├── VarErrorFlag.h │ │ ├── VariableFormat.h │ │ ├── VariableIndexTable.h │ │ └── ZeroGuid.h │ ├── Library │ │ ├── AuthVariableLib.h │ │ ├── BmpSupportLib.h │ │ ├── BootLogoLib.h │ │ ├── CapsuleLib.h │ │ ├── CpuExceptionHandlerLib.h │ │ ├── CustomizedDisplayLib.h │ │ ├── DebugAgentLib.h │ │ ├── DisplayUpdateProgressLib.h │ │ ├── FileExplorerLib.h │ │ ├── FmpAuthenticationLib.h │ │ ├── FrameBufferBltLib.h │ │ ├── HiiLib.h │ │ ├── IpmiLib.h │ │ ├── LockBoxLib.h │ │ ├── MemoryProfileLib.h │ │ ├── NonDiscoverableDeviceRegistrationLib.h │ │ ├── OemHookStatusCodeLib.h │ │ ├── PciHostBridgeLib.h │ │ ├── PlatformBootManagerLib.h │ │ ├── PlatformHookLib.h │ │ ├── PlatformVarCleanupLib.h │ │ ├── ResetSystemLib.h │ │ ├── ResetUtilityLib.h │ │ ├── SecurityManagementLib.h │ │ ├── SmmCorePlatformHookLib.h │ │ ├── SortLib.h │ │ ├── TpmMeasurementLib.h │ │ ├── UefiBootManagerLib.h │ │ ├── UefiHiiServicesLib.h │ │ ├── VarCheckLib.h │ │ ├── VariablePolicyHelperLib.h │ │ └── VariablePolicyLib.h │ ├── Ppi │ │ ├── AtaAhciController.h │ │ ├── AtaController.h │ │ ├── AtaPassThru.h │ │ ├── CapsuleOnDisk.h │ │ ├── Debug.h │ │ ├── IoMmu.h │ │ ├── IpmiPpi.h │ │ ├── NvmExpressHostController.h │ │ ├── NvmExpressPassThru.h │ │ ├── PlatformSpecificResetFilter.h │ │ ├── PlatformSpecificResetHandler.h │ │ ├── PlatformSpecificResetNotification.h │ │ ├── PostBootScriptTable.h │ │ ├── SdMmcHostController.h │ │ ├── SecPerformance.h │ │ ├── SerialPortPei.h │ │ ├── SmmAccess.h │ │ ├── SmmCommunication.h │ │ ├── SmmControl.h │ │ ├── StorageSecurityCommand.h │ │ ├── UfsHostController.h │ │ ├── Usb2HostController.h │ │ ├── UsbController.h │ │ ├── UsbHostController.h │ │ └── UsbIo.h │ └── Protocol │ │ ├── AtaAtapiPolicy.h │ │ ├── BootLogo.h │ │ ├── BootLogo2.h │ │ ├── DebuggerConfiguration.h │ │ ├── DeviceSecurity.h │ │ ├── DisplayProtocol.h │ │ ├── EbcSimpleDebugger.h │ │ ├── EbcVmTest.h │ │ ├── EsrtManagement.h │ │ ├── FaultTolerantWrite.h │ │ ├── FileExplorer.h │ │ ├── FirmwareManagementProgress.h │ │ ├── FormBrowserEx.h │ │ ├── FormBrowserEx2.h │ │ ├── GenericMemoryTest.h │ │ ├── IoMmu.h │ │ ├── IpmiProtocol.h │ │ ├── LoadPe32Image.h │ │ ├── LockBox.h │ │ ├── NonDiscoverableDevice.h │ │ ├── PeCoffImageEmulator.h │ │ ├── PlatformBootManager.h │ │ ├── PlatformLogo.h │ │ ├── PlatformSpecificResetFilter.h │ │ ├── PlatformSpecificResetHandler.h │ │ ├── Print2.h │ │ ├── Ps2Policy.h │ │ ├── SdMmcOverride.h │ │ ├── SmmExitBootServices.h │ │ ├── SmmFaultTolerantWrite.h │ │ ├── SmmFirmwareVolumeBlock.h │ │ ├── SmmLegacyBoot.h │ │ ├── SmmMemoryAttribute.h │ │ ├── SmmReadyToBoot.h │ │ ├── SmmSwapAddressRange.h │ │ ├── SmmVarCheck.h │ │ ├── SmmVariable.h │ │ ├── SwapAddressRange.h │ │ ├── UfsHostController.h │ │ ├── UfsHostControllerPlatform.h │ │ ├── VarCheck.h │ │ ├── VariableLock.h │ │ └── VariablePolicy.h ├── Library │ ├── AuthVariableLibNull │ │ ├── AuthVariableLibNull.c │ │ ├── AuthVariableLibNull.inf │ │ └── AuthVariableLibNull.uni │ ├── BaseBmpSupportLib │ │ ├── BaseBmpSupportLib.inf │ │ ├── BaseBmpSupportLib.uni │ │ └── BmpSupportLib.c │ ├── BaseHobLibNull │ │ ├── BaseHobLibNull.c │ │ ├── BaseHobLibNull.inf │ │ └── BaseHobLibNull.uni │ ├── BaseIpmiLibNull │ │ ├── BaseIpmiLibNull.c │ │ ├── BaseIpmiLibNull.inf │ │ └── BaseIpmiLibNull.uni │ ├── BaseMemoryAllocationLibNull │ │ ├── BaseMemoryAllocationLibNull.c │ │ ├── BaseMemoryAllocationLibNull.inf │ │ └── BaseMemoryAllocationLibNull.uni │ ├── BasePlatformHookLibNull │ │ ├── BasePlatformHookLibNull.c │ │ ├── BasePlatformHookLibNull.inf │ │ └── BasePlatformHookLibNull.uni │ ├── BaseResetSystemLibNull │ │ ├── BaseResetSystemLibNull.c │ │ ├── BaseResetSystemLibNull.inf │ │ └── BaseResetSystemLibNull.uni │ ├── BaseSerialPortLib16550 │ │ ├── BaseSerialPortLib16550.c │ │ ├── BaseSerialPortLib16550.inf │ │ └── BaseSerialPortLib16550.uni │ ├── BaseSortLib │ │ ├── BaseSortLib.c │ │ ├── BaseSortLib.inf │ │ └── BaseSortLib.uni │ ├── BootLogoLib │ │ ├── BootLogoLib.c │ │ ├── BootLogoLib.inf │ │ └── BootLogoLib.uni │ ├── BootMaintenanceManagerUiLib │ │ ├── BmLib.c │ │ ├── BootMaintenance.c │ │ ├── BootMaintenanceManager.h │ │ ├── BootMaintenanceManager.vfr │ │ ├── BootMaintenanceManagerCustomizedUi.c │ │ ├── BootMaintenanceManagerCustomizedUi.h │ │ ├── BootMaintenanceManagerCustomizedUiSupport.c │ │ ├── BootMaintenanceManagerCustomizedUiSupport.h │ │ ├── BootMaintenanceManagerStrings.uni │ │ ├── BootMaintenanceManagerUiLib.inf │ │ ├── BootMaintenanceManagerUiLib.uni │ │ ├── BootOption.c │ │ ├── ConsoleOption.c │ │ ├── Data.c │ │ ├── FormGuid.h │ │ ├── UpdatePage.c │ │ └── Variable.c │ ├── BootManagerUiLib │ │ ├── BootManager.c │ │ ├── BootManager.h │ │ ├── BootManagerStrings.uni │ │ ├── BootManagerUiLib.inf │ │ ├── BootManagerUiLib.uni │ │ └── BootManagerVfr.Vfr │ ├── BrotliCustomDecompressLib │ │ ├── BrotliCustomDecompressLib.inf │ │ ├── BrotliDecUefiSupport.c │ │ ├── BrotliDecUefiSupport.h │ │ ├── BrotliDecompress.c │ │ ├── BrotliDecompressLib.uni │ │ ├── BrotliDecompressLibInternal.h │ │ ├── GuidedSectionExtraction.c │ │ ├── brotli │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── .travis.yml │ │ │ ├── BUILD │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.in │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── README.md │ │ │ ├── WORKSPACE │ │ │ ├── bootstrap │ │ │ ├── c │ │ │ │ ├── common │ │ │ │ │ ├── constants.h │ │ │ │ │ ├── context.h │ │ │ │ │ ├── dictionary.bin │ │ │ │ │ ├── dictionary.c │ │ │ │ │ ├── dictionary.h │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── transform.c │ │ │ │ │ ├── transform.h │ │ │ │ │ └── version.h │ │ │ │ ├── dec │ │ │ │ │ ├── bit_reader.c │ │ │ │ │ ├── bit_reader.h │ │ │ │ │ ├── decode.c │ │ │ │ │ ├── huffman.c │ │ │ │ │ ├── huffman.h │ │ │ │ │ ├── prefix.h │ │ │ │ │ ├── state.c │ │ │ │ │ └── state.h │ │ │ │ ├── enc │ │ │ │ │ ├── backward_references.c │ │ │ │ │ ├── backward_references.h │ │ │ │ │ ├── backward_references_hq.c │ │ │ │ │ ├── backward_references_hq.h │ │ │ │ │ ├── backward_references_inc.h │ │ │ │ │ ├── bit_cost.c │ │ │ │ │ ├── bit_cost.h │ │ │ │ │ ├── bit_cost_inc.h │ │ │ │ │ ├── block_encoder_inc.h │ │ │ │ │ ├── block_splitter.c │ │ │ │ │ ├── block_splitter.h │ │ │ │ │ ├── block_splitter_inc.h │ │ │ │ │ ├── brotli_bit_stream.c │ │ │ │ │ ├── brotli_bit_stream.h │ │ │ │ │ ├── cluster.c │ │ │ │ │ ├── cluster.h │ │ │ │ │ ├── cluster_inc.h │ │ │ │ │ ├── command.h │ │ │ │ │ ├── compress_fragment.c │ │ │ │ │ ├── compress_fragment.h │ │ │ │ │ ├── compress_fragment_two_pass.c │ │ │ │ │ ├── compress_fragment_two_pass.h │ │ │ │ │ ├── dictionary_hash.c │ │ │ │ │ ├── dictionary_hash.h │ │ │ │ │ ├── encode.c │ │ │ │ │ ├── encoder_dict.c │ │ │ │ │ ├── encoder_dict.h │ │ │ │ │ ├── entropy_encode.c │ │ │ │ │ ├── entropy_encode.h │ │ │ │ │ ├── entropy_encode_static.h │ │ │ │ │ ├── fast_log.h │ │ │ │ │ ├── find_match_length.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── hash_composite_inc.h │ │ │ │ │ ├── hash_forgetful_chain_inc.h │ │ │ │ │ ├── hash_longest_match64_inc.h │ │ │ │ │ ├── hash_longest_match_inc.h │ │ │ │ │ ├── hash_longest_match_quickly_inc.h │ │ │ │ │ ├── hash_rolling_inc.h │ │ │ │ │ ├── hash_to_binary_tree_inc.h │ │ │ │ │ ├── histogram.c │ │ │ │ │ ├── histogram.h │ │ │ │ │ ├── histogram_inc.h │ │ │ │ │ ├── literal_cost.c │ │ │ │ │ ├── literal_cost.h │ │ │ │ │ ├── memory.c │ │ │ │ │ ├── memory.h │ │ │ │ │ ├── metablock.c │ │ │ │ │ ├── metablock.h │ │ │ │ │ ├── metablock_inc.h │ │ │ │ │ ├── params.h │ │ │ │ │ ├── prefix.h │ │ │ │ │ ├── quality.h │ │ │ │ │ ├── ringbuffer.h │ │ │ │ │ ├── static_dict.c │ │ │ │ │ ├── static_dict.h │ │ │ │ │ ├── static_dict_lut.h │ │ │ │ │ ├── utf8_util.c │ │ │ │ │ ├── utf8_util.h │ │ │ │ │ └── write_bits.h │ │ │ │ ├── fuzz │ │ │ │ │ ├── decode_fuzzer.c │ │ │ │ │ ├── run_decode_fuzzer.c │ │ │ │ │ └── test_fuzzer.sh │ │ │ │ ├── include │ │ │ │ │ └── brotli │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ ├── port.h │ │ │ │ │ │ └── types.h │ │ │ │ └── tools │ │ │ │ │ ├── brotli.c │ │ │ │ │ └── brotli.md │ │ │ ├── compiler_config_setting.bzl │ │ │ ├── configure │ │ │ ├── configure-cmake │ │ │ ├── configure.ac │ │ │ ├── csharp │ │ │ │ ├── injected_code.txt │ │ │ │ ├── org │ │ │ │ │ └── brotli │ │ │ │ │ │ └── dec │ │ │ │ │ │ ├── BitReader.cs │ │ │ │ │ │ ├── BitReaderTest.cs │ │ │ │ │ │ ├── BrotliInputStream.cs │ │ │ │ │ │ ├── BrotliRuntimeException.cs │ │ │ │ │ │ ├── Context.cs │ │ │ │ │ │ ├── Decode.cs │ │ │ │ │ │ ├── DecodeTest.cs │ │ │ │ │ │ ├── Dictionary.cs │ │ │ │ │ │ ├── DictionaryTest.cs │ │ │ │ │ │ ├── Huffman.cs │ │ │ │ │ │ ├── HuffmanTreeGroup.cs │ │ │ │ │ │ ├── IntReader.cs │ │ │ │ │ │ ├── Prefix.cs │ │ │ │ │ │ ├── RunningState.cs │ │ │ │ │ │ ├── State.cs │ │ │ │ │ │ ├── SynthTest.cs │ │ │ │ │ │ ├── Transform.cs │ │ │ │ │ │ ├── TransformTest.cs │ │ │ │ │ │ ├── Utils.cs │ │ │ │ │ │ └── WordTransformType.cs │ │ │ │ ├── sharpen.cfg │ │ │ │ └── transpile.sh │ │ │ ├── docs │ │ │ │ ├── brotli-comparison-study-2015-09-22.pdf │ │ │ │ ├── brotli.1 │ │ │ │ ├── decode.h.3 │ │ │ │ ├── encode.h.3 │ │ │ │ └── types.h.3 │ │ │ ├── fetch-spec │ │ │ │ └── shared-brotli-fetch-spec.txt │ │ │ ├── go │ │ │ │ ├── BUILD │ │ │ │ ├── WORKSPACE │ │ │ │ └── cbrotli │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── cbrotli_test.go │ │ │ │ │ ├── cgo.go │ │ │ │ │ ├── reader.go │ │ │ │ │ └── writer.go │ │ │ ├── java │ │ │ │ ├── BUILD │ │ │ │ ├── WORKSPACE │ │ │ │ └── org │ │ │ │ │ └── brotli │ │ │ │ │ ├── dec │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── BitReader.java │ │ │ │ │ ├── BitReaderTest.java │ │ │ │ │ ├── BrotliInputStream.java │ │ │ │ │ ├── BrotliRuntimeException.java │ │ │ │ │ ├── Context.java │ │ │ │ │ ├── Decode.java │ │ │ │ │ ├── DecodeTest.java │ │ │ │ │ ├── Dictionary.java │ │ │ │ │ ├── DictionaryData.java │ │ │ │ │ ├── DictionaryTest.java │ │ │ │ │ ├── EagerStreamTest.java │ │ │ │ │ ├── Huffman.java │ │ │ │ │ ├── SetDictionaryTest.java │ │ │ │ │ ├── State.java │ │ │ │ │ ├── SynthTest.java │ │ │ │ │ ├── Transform.java │ │ │ │ │ ├── TransformTest.java │ │ │ │ │ ├── Utils.java │ │ │ │ │ ├── build_defs.bzl │ │ │ │ │ ├── pom.xml │ │ │ │ │ └── proguard.pgcfg │ │ │ │ │ ├── integration │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── BrotliJniTestBase.java │ │ │ │ │ ├── BundleChecker.java │ │ │ │ │ ├── BundleHelper.java │ │ │ │ │ ├── fuzz_data.zip │ │ │ │ │ ├── pom.xml │ │ │ │ │ ├── test_corpus.zip │ │ │ │ │ └── test_data.zip │ │ │ │ │ ├── pom.xml │ │ │ │ │ └── wrapper │ │ │ │ │ ├── common │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── BrotliCommon.java │ │ │ │ │ ├── CommonJNI.java │ │ │ │ │ ├── SetRfcDictionaryTest.java │ │ │ │ │ ├── SetZeroDictionaryTest.java │ │ │ │ │ └── common_jni.cc │ │ │ │ │ ├── dec │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── BrotliDecoderChannel.java │ │ │ │ │ ├── BrotliDecoderChannelTest.java │ │ │ │ │ ├── BrotliInputStream.java │ │ │ │ │ ├── BrotliInputStreamTest.java │ │ │ │ │ ├── Decoder.java │ │ │ │ │ ├── DecoderJNI.java │ │ │ │ │ ├── DecoderTest.java │ │ │ │ │ ├── EagerStreamTest.java │ │ │ │ │ └── decoder_jni.cc │ │ │ │ │ └── enc │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── BrotliEncoderChannel.java │ │ │ │ │ ├── BrotliEncoderChannelTest.java │ │ │ │ │ ├── BrotliOutputStream.java │ │ │ │ │ ├── BrotliOutputStreamTest.java │ │ │ │ │ ├── EmptyInputTest.java │ │ │ │ │ ├── Encoder.java │ │ │ │ │ ├── EncoderJNI.java │ │ │ │ │ ├── EncoderTest.java │ │ │ │ │ └── encoder_jni.cc │ │ │ ├── js │ │ │ │ ├── BUILD │ │ │ │ ├── WORKSPACE │ │ │ │ ├── decode.js │ │ │ │ ├── decode.min.js │ │ │ │ ├── decode_test.js │ │ │ │ └── polyfill.js │ │ │ ├── premake5.lua │ │ │ ├── python │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── _brotli.cc │ │ │ │ ├── bro.py │ │ │ │ ├── brotli.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _test_utils.py │ │ │ │ │ ├── bro_test.py │ │ │ │ │ ├── compress_test.py │ │ │ │ │ ├── compressor_test.py │ │ │ │ │ ├── decompress_test.py │ │ │ │ │ └── decompressor_test.py │ │ │ ├── research │ │ │ │ ├── BUILD │ │ │ │ ├── BUILD.libdivsufsort │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── WORKSPACE │ │ │ │ ├── brotli_decoder.c │ │ │ │ ├── brotlidump.py │ │ │ │ ├── deorummolae.cc │ │ │ │ ├── deorummolae.h │ │ │ │ ├── dictionary_generator.cc │ │ │ │ ├── draw_diff.cc │ │ │ │ ├── draw_histogram.cc │ │ │ │ ├── durchschlag.cc │ │ │ │ ├── durchschlag.h │ │ │ │ ├── esaxx │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── README │ │ │ │ │ ├── cmdline.h │ │ │ │ │ ├── enumSubstring.cpp │ │ │ │ │ ├── esa.hxx │ │ │ │ │ ├── sais.hxx │ │ │ │ │ ├── waf │ │ │ │ │ └── wscript │ │ │ │ ├── find_opt_references.cc │ │ │ │ ├── img │ │ │ │ │ ├── enwik9_brotli.png │ │ │ │ │ ├── enwik9_diff.png │ │ │ │ │ └── enwik9_opt.png │ │ │ │ ├── libdivsufsort │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CMakeModules │ │ │ │ │ │ ├── AppendCompilerFlags.cmake │ │ │ │ │ │ ├── CheckFunctionKeywords.cmake │ │ │ │ │ │ ├── CheckLFS.cmake │ │ │ │ │ │ ├── ProjectCPack.cmake │ │ │ │ │ │ └── cmake_uninstall.cmake.in │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── VERSION.cmake │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── bwt.c │ │ │ │ │ │ ├── mksary.c │ │ │ │ │ │ ├── sasearch.c │ │ │ │ │ │ ├── suftest.c │ │ │ │ │ │ └── unbwt.c │ │ │ │ │ ├── include │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── config.h.cmake │ │ │ │ │ │ ├── divsufsort.h.cmake │ │ │ │ │ │ ├── divsufsort_private.h │ │ │ │ │ │ └── lfs.h.cmake │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── divsufsort.c │ │ │ │ │ │ ├── sssort.c │ │ │ │ │ │ ├── trsort.c │ │ │ │ │ │ └── utils.c │ │ │ │ │ └── pkgconfig │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── libdivsufsort.pc.cmake │ │ │ │ ├── read_dist.h │ │ │ │ ├── sieve.cc │ │ │ │ └── sieve.h │ │ │ ├── scripts │ │ │ │ ├── .bintray.json │ │ │ │ ├── .configure-custom.sh │ │ │ │ ├── .travis.sh │ │ │ │ ├── appveyor.yml │ │ │ │ ├── dictionary │ │ │ │ │ ├── README.md │ │ │ │ │ ├── step-01-download-rfc.py │ │ │ │ │ ├── step-02-rfc-to-bin.py │ │ │ │ │ ├── step-03-validate-bin.py │ │ │ │ │ └── step-04-generate-java-literals.py │ │ │ │ ├── fix-win-bazel-build.py │ │ │ │ ├── libbrotlicommon.pc.in │ │ │ │ ├── libbrotlidec.pc.in │ │ │ │ ├── libbrotlienc.pc.in │ │ │ │ └── sources.lst │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ └── tests │ │ │ │ ├── Makefile │ │ │ │ ├── compatibility_test.sh │ │ │ │ ├── roundtrip_test.sh │ │ │ │ ├── run-compatibility-test.cmake │ │ │ │ ├── run-roundtrip-test.cmake │ │ │ │ └── testdata │ │ │ │ ├── 10x10y │ │ │ │ ├── 10x10y.compressed │ │ │ │ ├── 64x │ │ │ │ ├── 64x.compressed │ │ │ │ ├── alice29.txt │ │ │ │ ├── alice29.txt.compressed │ │ │ │ ├── asyoulik.txt │ │ │ │ ├── asyoulik.txt.compressed │ │ │ │ ├── backward65536 │ │ │ │ ├── backward65536.compressed │ │ │ │ ├── bb.binast │ │ │ │ ├── compressed_file │ │ │ │ ├── compressed_file.compressed │ │ │ │ ├── compressed_repeated │ │ │ │ ├── compressed_repeated.compressed │ │ │ │ ├── empty │ │ │ │ ├── empty.compressed │ │ │ │ ├── empty.compressed.00 │ │ │ │ ├── empty.compressed.01 │ │ │ │ ├── empty.compressed.02 │ │ │ │ ├── empty.compressed.03 │ │ │ │ ├── empty.compressed.04 │ │ │ │ ├── empty.compressed.05 │ │ │ │ ├── empty.compressed.06 │ │ │ │ ├── empty.compressed.07 │ │ │ │ ├── empty.compressed.08 │ │ │ │ ├── empty.compressed.09 │ │ │ │ ├── empty.compressed.10 │ │ │ │ ├── empty.compressed.11 │ │ │ │ ├── empty.compressed.12 │ │ │ │ ├── empty.compressed.13 │ │ │ │ ├── empty.compressed.14 │ │ │ │ ├── empty.compressed.15 │ │ │ │ ├── empty.compressed.16 │ │ │ │ ├── empty.compressed.17 │ │ │ │ ├── empty.compressed.18 │ │ │ │ ├── lcet10.txt │ │ │ │ ├── lcet10.txt.compressed │ │ │ │ ├── mapsdatazrh │ │ │ │ ├── mapsdatazrh.compressed │ │ │ │ ├── monkey │ │ │ │ ├── monkey.compressed │ │ │ │ ├── plrabn12.txt │ │ │ │ ├── plrabn12.txt.compressed │ │ │ │ ├── quickfox │ │ │ │ ├── quickfox.compressed │ │ │ │ ├── quickfox_repeated │ │ │ │ ├── quickfox_repeated.compressed │ │ │ │ ├── random_chunks │ │ │ │ ├── random_org_10k.bin │ │ │ │ ├── random_org_10k.bin.compressed │ │ │ │ ├── ukkonooa │ │ │ │ ├── ukkonooa.compressed │ │ │ │ ├── x │ │ │ │ ├── x.compressed │ │ │ │ ├── x.compressed.00 │ │ │ │ ├── x.compressed.01 │ │ │ │ ├── x.compressed.02 │ │ │ │ ├── x.compressed.03 │ │ │ │ ├── xyzzy │ │ │ │ ├── xyzzy.compressed │ │ │ │ ├── zeros │ │ │ │ └── zeros.compressed │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdlib.h │ │ └── string.h │ ├── CpuExceptionHandlerLibNull │ │ ├── CpuExceptionHandlerLibNull.c │ │ ├── CpuExceptionHandlerLibNull.inf │ │ └── CpuExceptionHandlerLibNull.uni │ ├── CustomizedDisplayLib │ │ ├── Colors.h │ │ ├── CustomizedDisplayLib.c │ │ ├── CustomizedDisplayLib.inf │ │ ├── CustomizedDisplayLib.uni │ │ ├── CustomizedDisplayLibInternal.c │ │ ├── CustomizedDisplayLibInternal.h │ │ └── CustomizedDisplayLibModStrs.uni │ ├── DebugAgentLibNull │ │ ├── DebugAgentLibNull.c │ │ ├── DebugAgentLibNull.inf │ │ └── DebugAgentLibNull.uni │ ├── DeviceManagerUiLib │ │ ├── DeviceManager.c │ │ ├── DeviceManager.h │ │ ├── DeviceManagerStrings.uni │ │ ├── DeviceManagerUiLib.inf │ │ ├── DeviceManagerUiLib.uni │ │ └── DeviceManagerVfr.Vfr │ ├── DisplayUpdateProgressLibGraphics │ │ ├── DisplayUpdateProgressLibGraphics.c │ │ ├── DisplayUpdateProgressLibGraphics.inf │ │ └── DisplayUpdateProgressLibGraphics.uni │ ├── DisplayUpdateProgressLibText │ │ ├── DisplayUpdateProgressLibText.c │ │ ├── DisplayUpdateProgressLibText.inf │ │ └── DisplayUpdateProgressLibText.uni │ ├── DxeCapsuleLibFmp │ │ ├── CapsuleOnDisk.c │ │ ├── CapsuleOnDisk.h │ │ ├── DxeCapsuleLib.c │ │ ├── DxeCapsuleLib.inf │ │ ├── DxeCapsuleLib.uni │ │ ├── DxeCapsuleProcessLib.c │ │ ├── DxeCapsuleProcessLibNull.c │ │ ├── DxeCapsuleReportLib.c │ │ ├── DxeCapsuleReportLibNull.c │ │ ├── DxeCapsuleRuntime.c │ │ ├── DxeRuntimeCapsuleLib.inf │ │ └── DxeRuntimeCapsuleLib.uni │ ├── DxeCapsuleLibNull │ │ ├── DxeCapsuleLibNull.c │ │ ├── DxeCapsuleLibNull.inf │ │ └── DxeCapsuleLibNull.uni │ ├── DxeCoreMemoryAllocationLib │ │ ├── DxeCoreMemoryAllocationLib.inf │ │ ├── DxeCoreMemoryAllocationLib.uni │ │ ├── DxeCoreMemoryAllocationProfileLib.inf │ │ ├── DxeCoreMemoryAllocationProfileLib.uni │ │ ├── DxeCoreMemoryAllocationServices.h │ │ ├── DxeCoreMemoryProfileLib.c │ │ ├── DxeCoreMemoryProfileLibNull.c │ │ ├── DxeCoreMemoryProfileServices.h │ │ └── MemoryAllocationLib.c │ ├── DxeCorePerformanceLib │ │ ├── DxeCorePerformanceLib.c │ │ ├── DxeCorePerformanceLib.inf │ │ ├── DxeCorePerformanceLib.uni │ │ └── DxeCorePerformanceLibInternal.h │ ├── DxeCrc32GuidedSectionExtractLib │ │ ├── DxeCrc32GuidedSectionExtractLib.c │ │ ├── DxeCrc32GuidedSectionExtractLib.inf │ │ └── DxeCrc32GuidedSectionExtractLib.uni │ ├── DxeDebugPrintErrorLevelLib │ │ ├── DxeDebugPrintErrorLevelLib.c │ │ ├── DxeDebugPrintErrorLevelLib.inf │ │ └── DxeDebugPrintErrorLevelLib.uni │ ├── DxeFileExplorerProtocol │ │ ├── DxeFileExplorerProtocol.c │ │ ├── DxeFileExplorerProtocol.inf │ │ └── DxeFileExplorerProtocol.uni │ ├── DxeIpmiLibIpmiProtocol │ │ ├── DxeIpmiLibIpmiProtocol.c │ │ ├── DxeIpmiLibIpmiProtocol.inf │ │ └── DxeIpmiLibIpmiProtocol.uni │ ├── DxePerformanceLib │ │ ├── DxePerformanceLib.c │ │ ├── DxePerformanceLib.inf │ │ └── DxePerformanceLib.uni │ ├── DxePrintLibPrint2Protocol │ │ ├── DxePrintLibPrint2Protocol.inf │ │ ├── DxePrintLibPrint2Protocol.uni │ │ └── PrintLib.c │ ├── DxeReportStatusCodeLib │ │ ├── DxeReportStatusCodeLib.inf │ │ ├── DxeReportStatusCodeLib.uni │ │ └── ReportStatusCodeLib.c │ ├── DxeResetSystemLib │ │ ├── DxeResetSystemLib.c │ │ ├── DxeResetSystemLib.inf │ │ ├── DxeResetSystemLib.uni │ │ └── UnitTest │ │ │ ├── DxeResetSystemLibUnitTest.c │ │ │ ├── DxeResetSystemLibUnitTestHost.inf │ │ │ ├── MockUefiRuntimeServicesTableLib.c │ │ │ └── MockUefiRuntimeServicesTableLib.inf │ ├── DxeSecurityManagementLib │ │ ├── DxeSecurityManagementLib.c │ │ ├── DxeSecurityManagementLib.inf │ │ └── DxeSecurityManagementLib.uni │ ├── FileExplorerLib │ │ ├── FileExplorer.c │ │ ├── FileExplorer.h │ │ ├── FileExplorerLib.inf │ │ ├── FileExplorerLib.uni │ │ ├── FileExplorerString.uni │ │ ├── FileExplorerVfr.vfr │ │ └── FormGuid.h │ ├── FmpAuthenticationLibNull │ │ ├── FmpAuthenticationLibNull.c │ │ ├── FmpAuthenticationLibNull.inf │ │ └── FmpAuthenticationLibNull.uni │ ├── FrameBufferBltLib │ │ ├── FrameBufferBltLib.c │ │ └── FrameBufferBltLib.inf │ ├── LockBoxNullLib │ │ ├── LockBoxNullLib.c │ │ ├── LockBoxNullLib.inf │ │ └── LockBoxNullLib.uni │ ├── LzmaCustomDecompressLib │ │ ├── F86GuidedSectionExtraction.c │ │ ├── GuidedSectionExtraction.c │ │ ├── LZMA-SDK-README.txt │ │ ├── LzmaArchCustomDecompressLib.inf │ │ ├── LzmaArchDecompressLib.uni │ │ ├── LzmaCustomDecompressLib.inf │ │ ├── LzmaDecompress.c │ │ ├── LzmaDecompressLib.uni │ │ ├── LzmaDecompressLibInternal.h │ │ ├── Sdk │ │ │ ├── C │ │ │ │ ├── 7zTypes.h │ │ │ │ ├── 7zVersion.h │ │ │ │ ├── Bra.h │ │ │ │ ├── Bra86.c │ │ │ │ ├── Compiler.h │ │ │ │ ├── CpuArch.h │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ └── Precomp.h │ │ │ └── DOC │ │ │ │ ├── lzma-history.txt │ │ │ │ └── lzma-sdk.txt │ │ └── UefiLzma.h │ ├── NonDiscoverableDeviceRegistrationLib │ │ ├── NonDiscoverableDeviceRegistrationLib.c │ │ └── NonDiscoverableDeviceRegistrationLib.inf │ ├── OemHookStatusCodeLibNull │ │ ├── OemHookStatusCodeLibNull.c │ │ ├── OemHookStatusCodeLibNull.inf │ │ └── OemHookStatusCodeLibNull.uni │ ├── PciHostBridgeLibNull │ │ ├── PciHostBridgeLibNull.c │ │ ├── PciHostBridgeLibNull.inf │ │ └── PciHostBridgeLibNull.uni │ ├── PeiCrc32GuidedSectionExtractLib │ │ ├── PeiCrc32GuidedSectionExtractLib.c │ │ ├── PeiCrc32GuidedSectionExtractLib.inf │ │ └── PeiCrc32GuidedSectionExtractLib.uni │ ├── PeiDebugLibDebugPpi │ │ ├── DebugLib.c │ │ └── PeiDebugLibDebugPpi.inf │ ├── PeiDebugPrintHobLib │ │ ├── PeiDebugPrintHobLib.c │ │ ├── PeiDebugPrintHobLib.inf │ │ └── PeiDebugPrintHobLib.uni │ ├── PeiDxeDebugLibReportStatusCode │ │ ├── DebugLib.c │ │ ├── PeiDxeDebugLibReportStatusCode.inf │ │ └── PeiDxeDebugLibReportStatusCode.uni │ ├── PeiIpmiLibIpmiPpi │ │ ├── PeiIpmiLibIpmiPpi.c │ │ ├── PeiIpmiLibIpmiPpi.inf │ │ └── PeiIpmiLibIpmiPpi.uni │ ├── PeiPerformanceLib │ │ ├── PeiPerformanceLib.c │ │ ├── PeiPerformanceLib.inf │ │ └── PeiPerformanceLib.uni │ ├── PeiReportStatusCodeLib │ │ ├── PeiReportStatusCodeLib.inf │ │ ├── PeiReportStatusCodeLib.uni │ │ └── ReportStatusCodeLib.c │ ├── PeiResetSystemLib │ │ ├── PeiResetSystemLib.c │ │ ├── PeiResetSystemLib.inf │ │ └── PeiResetSystemLib.uni │ ├── PiDxeS3BootScriptLib │ │ ├── BootScriptExecute.c │ │ ├── BootScriptInternalFormat.h │ │ ├── BootScriptSave.c │ │ ├── DxeS3BootScriptLib.inf │ │ ├── DxeS3BootScriptLib.uni │ │ └── InternalBootScriptLib.h │ ├── PiSmmCoreMemoryAllocationLib │ │ ├── MemoryAllocationLib.c │ │ ├── PiSmmCoreMemoryAllocationLib.inf │ │ ├── PiSmmCoreMemoryAllocationLib.uni │ │ ├── PiSmmCoreMemoryAllocationProfileLib.inf │ │ ├── PiSmmCoreMemoryAllocationProfileLib.uni │ │ ├── PiSmmCoreMemoryAllocationServices.h │ │ ├── PiSmmCoreMemoryProfileLib.c │ │ ├── PiSmmCoreMemoryProfileLibNull.c │ │ └── PiSmmCoreMemoryProfileServices.h │ ├── PiSmmCoreSmmServicesTableLib │ │ ├── PiSmmCoreSmmServicesTableLib.c │ │ ├── PiSmmCoreSmmServicesTableLib.inf │ │ └── PiSmmCoreSmmServicesTableLib.uni │ ├── PlatformBootManagerLibNull │ │ ├── PlatformBootManager.c │ │ ├── PlatformBootManagerLibNull.inf │ │ └── PlatformBootManagerLibNull.uni │ ├── PlatformHookLibSerialPortPpi │ │ ├── PlatformHookLibSerialPortPpi.c │ │ ├── PlatformHookLibSerialPortPpi.inf │ │ └── PlatformHookLibSerialPortPpi.uni │ ├── PlatformVarCleanupLib │ │ ├── PlatVarCleanup.h │ │ ├── PlatVarCleanup.vfr │ │ ├── PlatVarCleanupHii.h │ │ ├── PlatVarCleanupLib.c │ │ ├── PlatformVarCleanupLib.inf │ │ ├── PlatformVarCleanupLib.uni │ │ └── VfrStrings.uni │ ├── ResetUtilityLib │ │ ├── ResetUtility.c │ │ └── ResetUtilityLib.inf │ ├── RuntimeDxeReportStatusCodeLib │ │ ├── ReportStatusCodeLib.c │ │ ├── RuntimeDxeReportStatusCodeLib.inf │ │ └── RuntimeDxeReportStatusCodeLib.uni │ ├── RuntimeResetSystemLib │ │ ├── RuntimeResetSystemLib.c │ │ ├── RuntimeResetSystemLib.inf │ │ └── RuntimeResetSystemLib.uni │ ├── SmmCorePerformanceLib │ │ ├── SmmCorePerformanceLib.c │ │ ├── SmmCorePerformanceLib.inf │ │ ├── SmmCorePerformanceLib.uni │ │ └── SmmCorePerformanceLibInternal.h │ ├── SmmCorePlatformHookLibNull │ │ ├── SmmCorePlatformHookLibNull.c │ │ ├── SmmCorePlatformHookLibNull.inf │ │ └── SmmCorePlatformHookLibNull.uni │ ├── SmmIpmiLibSmmIpmiProtocol │ │ ├── SmmIpmiLibSmmIpmiProtocol.c │ │ ├── SmmIpmiLibSmmIpmiProtocol.inf │ │ └── SmmIpmiLibSmmIpmiProtocol.uni │ ├── SmmLockBoxLib │ │ ├── SmmLockBoxDxeLib.c │ │ ├── SmmLockBoxDxeLib.inf │ │ ├── SmmLockBoxDxeLib.uni │ │ ├── SmmLockBoxLibPrivate.h │ │ ├── SmmLockBoxPeiLib.c │ │ ├── SmmLockBoxPeiLib.inf │ │ ├── SmmLockBoxPeiLib.uni │ │ ├── SmmLockBoxSmmLib.c │ │ ├── SmmLockBoxSmmLib.inf │ │ └── SmmLockBoxSmmLib.uni │ ├── SmmMemoryAllocationProfileLib │ │ ├── MemoryAllocationLib.c │ │ ├── SmmMemoryAllocationProfileLib.inf │ │ ├── SmmMemoryAllocationProfileLib.uni │ │ └── SmmMemoryProfileLib.c │ ├── SmmPerformanceLib │ │ ├── SmmPerformanceLib.c │ │ ├── SmmPerformanceLib.inf │ │ └── SmmPerformanceLib.uni │ ├── SmmReportStatusCodeLib │ │ ├── ReportStatusCodeLib.c │ │ ├── SmmReportStatusCodeLib.inf │ │ └── SmmReportStatusCodeLib.uni │ ├── SmmSmiHandlerProfileLib │ │ ├── SmmSmiHandlerProfileLib.c │ │ ├── SmmSmiHandlerProfileLib.inf │ │ └── SmmSmiHandlerProfileLib.uni │ ├── TpmMeasurementLibNull │ │ ├── TpmMeasurementLibNull.c │ │ ├── TpmMeasurementLibNull.inf │ │ └── TpmMeasurementLibNull.uni │ ├── UefiBootManagerLib │ │ ├── BmBoot.c │ │ ├── BmBootDescription.c │ │ ├── BmConnect.c │ │ ├── BmConsole.c │ │ ├── BmDriverHealth.c │ │ ├── BmHotkey.c │ │ ├── BmLoadOption.c │ │ ├── BmMisc.c │ │ ├── InternalBm.h │ │ ├── UefiBootManagerLib.inf │ │ └── UefiBootManagerLib.uni │ ├── UefiHiiLib │ │ ├── HiiLanguage.c │ │ ├── HiiLib.c │ │ ├── HiiString.c │ │ ├── InternalHiiLib.h │ │ ├── UefiHiiLib.inf │ │ └── UefiHiiLib.uni │ ├── UefiHiiServicesLib │ │ ├── UefiHiiServicesLib.c │ │ ├── UefiHiiServicesLib.inf │ │ └── UefiHiiServicesLib.uni │ ├── UefiMemoryAllocationProfileLib │ │ ├── DxeMemoryProfileLib.c │ │ ├── MemoryAllocationLib.c │ │ ├── UefiMemoryAllocationProfileLib.inf │ │ └── UefiMemoryAllocationProfileLib.uni │ ├── UefiSortLib │ │ ├── UefiSortLib.c │ │ ├── UefiSortLib.inf │ │ └── UefiSortLib.uni │ ├── VarCheckHiiLib │ │ ├── InternalVarCheckStructure.h │ │ ├── VarCheckHii.h │ │ ├── VarCheckHiiGen.c │ │ ├── VarCheckHiiGen.h │ │ ├── VarCheckHiiGenFromFv.c │ │ ├── VarCheckHiiGenFromHii.c │ │ ├── VarCheckHiiLib.inf │ │ ├── VarCheckHiiLib.uni │ │ └── VarCheckHiiLibNullClass.c │ ├── VarCheckLib │ │ ├── VarCheckLib.c │ │ ├── VarCheckLib.inf │ │ └── VarCheckLib.uni │ ├── VarCheckPcdLib │ │ ├── VarCheckPcdLib.inf │ │ ├── VarCheckPcdLib.uni │ │ ├── VarCheckPcdLibNullClass.c │ │ └── VarCheckPcdStructure.h │ ├── VarCheckPolicyLib │ │ ├── VarCheckPolicyLib.c │ │ ├── VarCheckPolicyLib.inf │ │ └── VarCheckPolicyLib.uni │ ├── VarCheckUefiLib │ │ ├── VarCheckUefiLib.inf │ │ ├── VarCheckUefiLib.uni │ │ └── VarCheckUefiLibNullClass.c │ ├── VariablePolicyHelperLib │ │ ├── VariablePolicyHelperLib.c │ │ ├── VariablePolicyHelperLib.inf │ │ └── VariablePolicyHelperLib.uni │ └── VariablePolicyLib │ │ ├── ReadMe.md │ │ ├── VariablePolicyExtraInitNull.c │ │ ├── VariablePolicyExtraInitRuntimeDxe.c │ │ ├── VariablePolicyLib.c │ │ ├── VariablePolicyLib.inf │ │ ├── VariablePolicyLib.uni │ │ └── VariablePolicyLibRuntimeDxe.inf ├── Logo │ ├── Logo.bmp │ ├── Logo.c │ ├── Logo.idf │ ├── Logo.inf │ ├── Logo.uni │ ├── LogoDxe.inf │ ├── LogoDxe.uni │ ├── LogoDxeExtra.uni │ └── LogoExtra.uni ├── MdeModulePkg.ci.yaml ├── MdeModulePkg.dec ├── MdeModulePkg.dsc ├── MdeModulePkg.uni ├── MdeModulePkgExtra.uni ├── Test │ └── MdeModulePkgHostTest.dsc └── Universal │ ├── Acpi │ ├── AcpiPlatformDxe │ │ ├── AcpiPlatform.c │ │ ├── AcpiPlatform.uni │ │ ├── AcpiPlatformDxe.inf │ │ └── AcpiPlatformExtra.uni │ ├── AcpiTableDxe │ │ ├── AcpiSdt.c │ │ ├── AcpiSdt.h │ │ ├── AcpiTable.c │ │ ├── AcpiTable.h │ │ ├── AcpiTableDxe.inf │ │ ├── AcpiTableDxe.uni │ │ ├── AcpiTableDxeExtra.uni │ │ ├── AcpiTableProtocol.c │ │ ├── Aml.c │ │ ├── AmlChild.c │ │ ├── AmlNamespace.c │ │ ├── AmlOption.c │ │ └── AmlString.c │ ├── BootGraphicsResourceTableDxe │ │ ├── BootGraphicsResourceTableDxe.c │ │ ├── BootGraphicsResourceTableDxe.inf │ │ ├── BootGraphicsResourceTableDxe.uni │ │ └── BootGraphicsResourceTableDxeExtra.uni │ ├── BootScriptExecutorDxe │ │ ├── BootScriptExecutorDxe.inf │ │ ├── BootScriptExecutorDxe.uni │ │ ├── BootScriptExecutorDxeExtra.uni │ │ ├── IA32 │ │ │ ├── S3Asm.nasm │ │ │ └── SetIdtEntry.c │ │ ├── ScriptExecute.c │ │ ├── ScriptExecute.h │ │ └── X64 │ │ │ ├── S3Asm.nasm │ │ │ └── SetIdtEntry.c │ ├── FirmwarePerformanceDataTableDxe │ │ ├── FirmwarePerformanceDxe.c │ │ ├── FirmwarePerformanceDxe.inf │ │ ├── FirmwarePerformanceDxe.uni │ │ └── FirmwarePerformanceDxeExtra.uni │ ├── FirmwarePerformanceDataTablePei │ │ ├── FirmwarePerformancePei.c │ │ ├── FirmwarePerformancePei.inf │ │ ├── FirmwarePerformancePei.uni │ │ └── FirmwarePerformancePeiExtra.uni │ ├── FirmwarePerformanceDataTableSmm │ │ ├── FirmwarePerformanceSmm.c │ │ ├── FirmwarePerformanceSmm.inf │ │ ├── FirmwarePerformanceSmm.uni │ │ └── FirmwarePerformanceSmmExtra.uni │ ├── S3SaveStateDxe │ │ ├── AcpiS3ContextSave.c │ │ ├── InternalS3SaveState.h │ │ ├── S3SaveState.c │ │ ├── S3SaveStateDxe.inf │ │ ├── S3SaveStateDxe.uni │ │ └── S3SaveStateDxeExtra.uni │ └── SmmS3SaveState │ │ ├── InternalSmmSaveState.h │ │ ├── SmmS3SaveState.c │ │ ├── SmmS3SaveState.inf │ │ ├── SmmS3SaveState.uni │ │ └── SmmS3SaveStateExtra.uni │ ├── BdsDxe │ ├── Bds.h │ ├── BdsDxe.inf │ ├── BdsDxe.uni │ ├── BdsDxeExtra.uni │ ├── BdsEntry.c │ ├── HwErrRecSupport.c │ ├── HwErrRecSupport.h │ ├── Language.c │ └── Language.h │ ├── BootManagerPolicyDxe │ ├── BootManagerPolicyDxe.c │ ├── BootManagerPolicyDxe.inf │ ├── BootManagerPolicyDxe.uni │ └── BootManagerPolicyDxeExtra.uni │ ├── CapsuleOnDiskLoadPei │ ├── CapsuleOnDiskLoadPei.c │ ├── CapsuleOnDiskLoadPei.inf │ ├── CapsuleOnDiskLoadPei.uni │ └── CapsuleOnDiskLoadPeiExtra.uni │ ├── CapsulePei │ ├── Capsule.h │ ├── CapsulePei.inf │ ├── CapsulePei.uni │ ├── CapsulePeiExtra.uni │ ├── CapsuleX64.inf │ ├── CapsuleX64.uni │ ├── CapsuleX64Extra.uni │ ├── Common │ │ ├── CapsuleCoalesce.c │ │ └── CommonHeader.h │ ├── UefiCapsule.c │ └── X64 │ │ ├── PageFaultHandler.nasm │ │ └── X64Entry.c │ ├── CapsuleRuntimeDxe │ ├── Arm │ │ └── CapsuleReset.c │ ├── CapsuleCache.c │ ├── CapsuleCacheNull.c │ ├── CapsuleReset.c │ ├── CapsuleRuntimeDxe.inf │ ├── CapsuleRuntimeDxe.uni │ ├── CapsuleRuntimeDxeExtra.uni │ ├── CapsuleService.c │ ├── CapsuleService.h │ ├── SaveLongModeContext.c │ └── X64 │ │ └── SaveLongModeContext.c │ ├── Console │ ├── ConPlatformDxe │ │ ├── ComponentName.c │ │ ├── ConPlatform.c │ │ ├── ConPlatform.h │ │ ├── ConPlatformDxe.inf │ │ ├── ConPlatformDxe.uni │ │ └── ConPlatformDxeExtra.uni │ ├── ConSplitterDxe │ │ ├── ComponentName.c │ │ ├── ConSplitter.c │ │ ├── ConSplitter.h │ │ ├── ConSplitterDxe.inf │ │ ├── ConSplitterDxe.uni │ │ ├── ConSplitterDxeExtra.uni │ │ └── ConSplitterGraphics.c │ ├── GraphicsConsoleDxe │ │ ├── ComponentName.c │ │ ├── GraphicsConsole.c │ │ ├── GraphicsConsole.h │ │ ├── GraphicsConsoleDxe.inf │ │ ├── GraphicsConsoleDxe.uni │ │ ├── GraphicsConsoleDxeExtra.uni │ │ └── LaffStd.c │ ├── GraphicsOutputDxe │ │ ├── ComponentName.c │ │ ├── GraphicsOutput.c │ │ ├── GraphicsOutput.h │ │ └── GraphicsOutputDxe.inf │ └── TerminalDxe │ │ ├── Ansi.c │ │ ├── ComponentName.c │ │ ├── Terminal.c │ │ ├── Terminal.h │ │ ├── TerminalConIn.c │ │ ├── TerminalConOut.c │ │ ├── TerminalDxe.inf │ │ ├── TerminalDxe.uni │ │ ├── TerminalDxeExtra.uni │ │ └── Vtutf8.c │ ├── DebugPortDxe │ ├── ComponentName.c │ ├── DebugPort.c │ ├── DebugPort.h │ ├── DebugPortDxe.inf │ ├── DebugPortDxe.uni │ └── DebugPortDxeExtra.uni │ ├── DebugServicePei │ ├── DebugService.h │ ├── DebugServicePei.c │ ├── DebugServicePei.inf │ └── DebugServicePei.uni │ ├── DebugSupportDxe │ ├── DebugSupport.c │ ├── DebugSupportDxe.inf │ ├── DebugSupportDxe.uni │ ├── DebugSupportDxeExtra.uni │ ├── Ia32 │ │ ├── AsmFuncs.nasm │ │ ├── DebugSupport.h │ │ ├── PlDebugSupport.c │ │ ├── PlDebugSupport.h │ │ └── PlDebugSupportIa32.c │ └── X64 │ │ ├── AsmFuncs.nasm │ │ ├── PlDebugSupport.h │ │ └── PlDebugSupportX64.c │ ├── DevicePathDxe │ ├── DevicePath.c │ ├── DevicePathDxe.inf │ ├── DevicePathDxe.uni │ └── DevicePathDxeExtra.uni │ ├── Disk │ ├── CdExpressPei │ │ ├── CdExpressPei.inf │ │ ├── CdExpressPei.uni │ │ ├── CdExpressPeiExtra.uni │ │ ├── PeiCdExpress.c │ │ └── PeiCdExpress.h │ ├── DiskIoDxe │ │ ├── ComponentName.c │ │ ├── DiskIo.c │ │ ├── DiskIo.h │ │ ├── DiskIoDxe.inf │ │ ├── DiskIoDxe.uni │ │ └── DiskIoDxeExtra.uni │ ├── PartitionDxe │ │ ├── ComponentName.c │ │ ├── ElTorito.c │ │ ├── Gpt.c │ │ ├── Mbr.c │ │ ├── Partition.c │ │ ├── Partition.h │ │ ├── PartitionDxe.inf │ │ ├── PartitionDxe.uni │ │ ├── PartitionDxeExtra.uni │ │ └── Udf.c │ ├── RamDiskDxe │ │ ├── RamDisk.asl │ │ ├── RamDiskBlockIo.c │ │ ├── RamDiskDriver.c │ │ ├── RamDiskDxe.inf │ │ ├── RamDiskDxe.uni │ │ ├── RamDiskFileExplorer.c │ │ ├── RamDiskHii.vfr │ │ ├── RamDiskHiiStrings.uni │ │ ├── RamDiskImpl.c │ │ ├── RamDiskImpl.h │ │ ├── RamDiskNVData.h │ │ └── RamDiskProtocol.c │ ├── UdfDxe │ │ ├── ComponentName.c │ │ ├── File.c │ │ ├── FileName.c │ │ ├── FileSystemOperations.c │ │ ├── Udf.c │ │ ├── Udf.h │ │ └── UdfDxe.inf │ └── UnicodeCollation │ │ └── EnglishDxe │ │ ├── EnglishDxe.inf │ │ ├── EnglishDxe.uni │ │ ├── EnglishDxeExtra.uni │ │ ├── UnicodeCollationEng.c │ │ └── UnicodeCollationEng.h │ ├── DisplayEngineDxe │ ├── DisplayEngine.uni │ ├── DisplayEngineDxe.inf │ ├── DisplayEngineExtra.uni │ ├── FormDisplay.c │ ├── FormDisplay.h │ ├── FormDisplayStr.uni │ ├── InputHandler.c │ ├── Popup.c │ └── ProcessOptions.c │ ├── DriverHealthManagerDxe │ ├── DriverHealthConfigureVfr.Vfr │ ├── DriverHealthManagerDxe.c │ ├── DriverHealthManagerDxe.h │ ├── DriverHealthManagerDxe.inf │ ├── DriverHealthManagerDxe.uni │ ├── DriverHealthManagerDxeExtra.uni │ ├── DriverHealthManagerStrings.uni │ ├── DriverHealthManagerVfr.Vfr │ └── DriverHealthManagerVfr.h │ ├── DriverSampleDxe │ ├── DriverSample.c │ ├── DriverSample.h │ ├── DriverSample.uni │ ├── DriverSampleDxe.inf │ ├── DriverSampleExtra.uni │ ├── Inventory.vfr │ ├── InventoryStrings.uni │ ├── NVDataStruc.h │ ├── Vfr.vfr │ └── VfrStrings.uni │ ├── EbcDxe │ ├── AArch64 │ │ ├── EbcLowLevel.S │ │ └── EbcSupport.c │ ├── EbcDebugger.inf │ ├── EbcDebugger.uni │ ├── EbcDebugger │ │ ├── EbcDebuggerConfig.c │ │ ├── Edb.c │ │ ├── Edb.h │ │ ├── EdbCmdBranch.c │ │ ├── EdbCmdBreak.c │ │ ├── EdbCmdBreakpoint.c │ │ ├── EdbCmdExtIo.c │ │ ├── EdbCmdExtPci.c │ │ ├── EdbCmdGo.c │ │ ├── EdbCmdHelp.c │ │ ├── EdbCmdMemory.c │ │ ├── EdbCmdQuit.c │ │ ├── EdbCmdRegister.c │ │ ├── EdbCmdScope.c │ │ ├── EdbCmdStep.c │ │ ├── EdbCmdSymbol.c │ │ ├── EdbCommand.c │ │ ├── EdbCommand.h │ │ ├── EdbCommon.h │ │ ├── EdbDisasm.c │ │ ├── EdbDisasm.h │ │ ├── EdbDisasmSupport.c │ │ ├── EdbDisasmSupport.h │ │ ├── EdbHook.c │ │ ├── EdbHook.h │ │ ├── EdbSupport.h │ │ ├── EdbSupportFile.c │ │ ├── EdbSupportString.c │ │ ├── EdbSupportUI.c │ │ ├── EdbSymbol.c │ │ └── EdbSymbol.h │ ├── EbcDebuggerConfig.inf │ ├── EbcDebuggerConfig.uni │ ├── EbcDebuggerConfigExtra.uni │ ├── EbcDebuggerExtra.uni │ ├── EbcDebuggerHook.c │ ├── EbcDebuggerHook.h │ ├── EbcDxe.inf │ ├── EbcDxe.uni │ ├── EbcDxeExtra.uni │ ├── EbcExecute.c │ ├── EbcExecute.h │ ├── EbcInt.c │ ├── EbcInt.h │ ├── Ia32 │ │ ├── EbcLowLevel.nasm │ │ └── EbcSupport.c │ └── X64 │ │ ├── EbcLowLevel.nasm │ │ └── EbcSupport.c │ ├── EsrtDxe │ ├── EsrtDxe.c │ ├── EsrtDxe.inf │ ├── EsrtDxe.uni │ ├── EsrtDxeExtra.uni │ ├── EsrtImpl.c │ └── EsrtImpl.h │ ├── EsrtFmpDxe │ ├── EsrtFmp.c │ ├── EsrtFmpDebugPrint.c │ ├── EsrtFmpDxe.inf │ ├── EsrtFmpDxe.uni │ └── EsrtFmpDxeExtra.uni │ ├── FaultTolerantWriteDxe │ ├── FaultTolerantWrite.c │ ├── FaultTolerantWrite.h │ ├── FaultTolerantWriteDxe.c │ ├── FaultTolerantWriteDxe.inf │ ├── FaultTolerantWriteDxe.uni │ ├── FaultTolerantWriteDxeExtra.uni │ ├── FaultTolerantWriteSmm.c │ ├── FaultTolerantWriteSmm.inf │ ├── FaultTolerantWriteSmmCommon.h │ ├── FaultTolerantWriteSmmDxe.c │ ├── FaultTolerantWriteSmmDxe.h │ ├── FaultTolerantWriteSmmDxe.inf │ ├── FaultTolerantWriteSmmDxe.uni │ ├── FaultTolerantWriteSmmDxeExtra.uni │ ├── FaultTolerantWriteStandaloneMm.c │ ├── FaultTolerantWriteStandaloneMm.inf │ ├── FaultTolerantWriteTraditionalMm.c │ ├── FtwMisc.c │ ├── SmmFaultTolerantWriteDxe.uni │ ├── SmmFaultTolerantWriteDxeExtra.uni │ └── UpdateWorkingBlock.c │ ├── FaultTolerantWritePei │ ├── FaultTolerantWritePei.c │ ├── FaultTolerantWritePei.inf │ ├── FaultTolerantWritePei.uni │ └── FaultTolerantWritePeiExtra.uni │ ├── FileExplorerDxe │ ├── FileExplorerDxe.c │ ├── FileExplorerDxe.inf │ ├── FileExplorerDxe.uni │ └── FileExplorerDxeExtra.uni │ ├── FvSimpleFileSystemDxe │ ├── ComponentName.c │ ├── FvSimpleFileSystem.c │ ├── FvSimpleFileSystem.uni │ ├── FvSimpleFileSystemDxe.inf │ ├── FvSimpleFileSystemEntryPoint.c │ ├── FvSimpleFileSystemExtra.uni │ └── FvSimpleFileSystemInternal.h │ ├── HiiDatabaseDxe │ ├── ConfigKeywordHandler.c │ ├── ConfigRouting.c │ ├── Database.c │ ├── Font.c │ ├── HiiDatabase.h │ ├── HiiDatabase.uni │ ├── HiiDatabaseDxe.inf │ ├── HiiDatabaseEntry.c │ ├── HiiDatabaseExtra.uni │ ├── Image.c │ ├── ImageEx.c │ └── String.c │ ├── HiiResourcesSampleDxe │ ├── HiiResourcesSample.c │ ├── HiiResourcesSample.uni │ ├── HiiResourcesSampleDxe.inf │ ├── HiiResourcesSampleExtra.uni │ ├── Sample.vfr │ └── SampleStrings.uni │ ├── LegacyRegion2Dxe │ ├── LegacyRegion2.c │ ├── LegacyRegion2.h │ ├── LegacyRegion2Dxe.inf │ ├── LegacyRegion2Dxe.uni │ └── LegacyRegion2DxeExtra.uni │ ├── LoadFileOnFv2 │ ├── LoadFileOnFv2.c │ ├── LoadFileOnFv2.inf │ ├── LoadFileOnFv2.uni │ └── LoadFileOnFv2Extra.uni │ ├── LockBox │ └── SmmLockBox │ │ ├── SmmLockBox.c │ │ ├── SmmLockBox.inf │ │ ├── SmmLockBox.uni │ │ └── SmmLockBoxExtra.uni │ ├── MemoryTest │ ├── GenericMemoryTestDxe │ │ ├── GenericMemoryTestDxe.inf │ │ ├── GenericMemoryTestDxe.uni │ │ ├── GenericMemoryTestDxeExtra.uni │ │ ├── LightMemoryTest.c │ │ └── LightMemoryTest.h │ └── NullMemoryTestDxe │ │ ├── NullMemoryTest.c │ │ ├── NullMemoryTest.h │ │ ├── NullMemoryTestDxe.inf │ │ ├── NullMemoryTestDxe.uni │ │ └── NullMemoryTestDxeExtra.uni │ ├── Metronome │ ├── Metronome.c │ ├── Metronome.h │ ├── Metronome.inf │ ├── Metronome.uni │ └── MetronomeExtra.uni │ ├── MonotonicCounterRuntimeDxe │ ├── MonotonicCounter.c │ ├── MonotonicCounterRuntimeDxe.inf │ ├── MonotonicCounterRuntimeDxe.uni │ └── MonotonicCounterRuntimeDxeExtra.uni │ ├── PCD │ ├── Dxe │ │ ├── Pcd.c │ │ ├── Pcd.inf │ │ ├── PcdDxe.uni │ │ ├── PcdDxeExtra.uni │ │ ├── Service.c │ │ └── Service.h │ └── Pei │ │ ├── Pcd.c │ │ ├── Pcd.inf │ │ ├── PcdPeim.uni │ │ ├── PcdPeimExtra.uni │ │ ├── Service.c │ │ └── Service.h │ ├── PcatSingleSegmentPciCfg2Pei │ ├── PcatSingleSegmentPciCfg2Pei.inf │ ├── PcatSingleSegmentPciCfg2Pei.uni │ ├── PcatSingleSegmentPciCfg2PeiExtra.uni │ └── PciCfg2.c │ ├── PlatformDriOverrideDxe │ ├── InternalPlatDriOverrideDxe.h │ ├── PlatDriOverrideDxe.c │ ├── PlatDriOverrideDxe.uni │ ├── PlatDriOverrideDxeExtra.uni │ ├── PlatDriOverrideLib.c │ ├── PlatOverMngr.h │ ├── PlatformDriOverrideDxe.inf │ ├── Vfr.vfr │ └── VfrStrings.uni │ ├── PrintDxe │ ├── Print.c │ ├── PrintDxe.inf │ ├── PrintDxe.uni │ └── PrintDxeExtra.uni │ ├── RegularExpressionDxe │ ├── OnigurumaUefiPort.c │ ├── OnigurumaUefiPort.h │ ├── RegularExpressionDxe.c │ ├── RegularExpressionDxe.h │ ├── RegularExpressionDxe.inf │ ├── config.h │ ├── oniguruma │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── HISTORY │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── README.md │ │ ├── README_japanese │ │ ├── autogen.sh │ │ ├── cmake │ │ │ └── Config.cmake.in │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── doc │ │ │ ├── API │ │ │ ├── API.ja │ │ │ ├── CALLOUTS.API │ │ │ ├── CALLOUTS.API.ja │ │ │ ├── CALLOUTS.BUILTIN │ │ │ ├── CALLOUTS.BUILTIN.ja │ │ │ ├── FAQ │ │ │ ├── FAQ.ja │ │ │ ├── RE │ │ │ ├── RE.ja │ │ │ ├── SYNTAX.md │ │ │ └── UNICODE_PROPERTIES │ │ ├── harnesses │ │ │ ├── ascii_compatible.dict │ │ │ ├── base.c │ │ │ ├── deluxe.c │ │ │ ├── dict_conv.py │ │ │ ├── fuzzer.options │ │ │ ├── libfuzzer-onig.cpp │ │ │ └── regset.c │ │ ├── index.html │ │ ├── index_ja.html │ │ ├── install-sh │ │ ├── m4 │ │ │ └── .whatever │ │ ├── make_win.bat │ │ ├── make_win32.bat │ │ ├── make_win64.bat │ │ ├── missing │ │ ├── onig-config.in │ │ ├── oniguruma.pc.cmake.in │ │ ├── oniguruma.pc.in │ │ ├── sample │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── bug_fix.c │ │ │ ├── callout.c │ │ │ ├── count.c │ │ │ ├── crnl.c │ │ │ ├── echo.c │ │ │ ├── encode.c │ │ │ ├── listcap.c │ │ │ ├── names.c │ │ │ ├── posix.c │ │ │ ├── regset.c │ │ │ ├── scan.c │ │ │ ├── simple.c │ │ │ ├── sql.c │ │ │ ├── syntax.c │ │ │ └── user_property.c │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.windows │ │ │ ├── ascii.c │ │ │ ├── big5.c │ │ │ ├── config.h.cmake.in │ │ │ ├── config.h.win32 │ │ │ ├── config.h.win64 │ │ │ ├── config.h.windows.in │ │ │ ├── cp1251.c │ │ │ ├── euc_jp.c │ │ │ ├── euc_jp_prop.c │ │ │ ├── euc_jp_prop.gperf │ │ │ ├── euc_kr.c │ │ │ ├── euc_tw.c │ │ │ ├── gb18030.c │ │ │ ├── gperf_fold_key_conv.py │ │ │ ├── gperf_unfold_key_conv.py │ │ │ ├── iso8859_1.c │ │ │ ├── iso8859_10.c │ │ │ ├── iso8859_11.c │ │ │ ├── iso8859_13.c │ │ │ ├── iso8859_14.c │ │ │ ├── iso8859_15.c │ │ │ ├── iso8859_16.c │ │ │ ├── iso8859_2.c │ │ │ ├── iso8859_3.c │ │ │ ├── iso8859_4.c │ │ │ ├── iso8859_5.c │ │ │ ├── iso8859_6.c │ │ │ ├── iso8859_7.c │ │ │ ├── iso8859_8.c │ │ │ ├── iso8859_9.c │ │ │ ├── koi8.c │ │ │ ├── koi8_r.c │ │ │ ├── make_property.sh │ │ │ ├── make_unicode_egcb.sh │ │ │ ├── make_unicode_egcb_data.py │ │ │ ├── make_unicode_fold.sh │ │ │ ├── make_unicode_fold_data.py │ │ │ ├── make_unicode_property.sh │ │ │ ├── make_unicode_property_data.py │ │ │ ├── make_unicode_wb.sh │ │ │ ├── make_unicode_wb_data.py │ │ │ ├── mktable.c │ │ │ ├── onig_init.c │ │ │ ├── oniggnu.h │ │ │ ├── onigposix.h │ │ │ ├── oniguruma.h │ │ │ ├── regcomp.c │ │ │ ├── regenc.c │ │ │ ├── regenc.h │ │ │ ├── regerror.c │ │ │ ├── regexec.c │ │ │ ├── regext.c │ │ │ ├── reggnu.c │ │ │ ├── regint.h │ │ │ ├── regparse.c │ │ │ ├── regparse.h │ │ │ ├── regposerr.c │ │ │ ├── regposix.c │ │ │ ├── regsyntax.c │ │ │ ├── regtrav.c │ │ │ ├── regversion.c │ │ │ ├── sjis.c │ │ │ ├── sjis_prop.c │ │ │ ├── sjis_prop.gperf │ │ │ ├── st.c │ │ │ ├── st.h │ │ │ ├── unicode.c │ │ │ ├── unicode_egcb_data.c │ │ │ ├── unicode_fold1_key.c │ │ │ ├── unicode_fold2_key.c │ │ │ ├── unicode_fold3_key.c │ │ │ ├── unicode_fold_data.c │ │ │ ├── unicode_property_data.c │ │ │ ├── unicode_property_data_posix.c │ │ │ ├── unicode_unfold_key.c │ │ │ ├── unicode_wb_data.c │ │ │ ├── utf16_be.c │ │ │ ├── utf16_le.c │ │ │ ├── utf32_be.c │ │ │ ├── utf32_le.c │ │ │ └── utf8.c │ │ ├── test-driver │ │ ├── test │ │ │ ├── Makefile.am │ │ │ ├── test_regset.c │ │ │ ├── test_syntax.c │ │ │ ├── test_utf8.c │ │ │ ├── testc.c │ │ │ └── testu.c │ │ └── windows │ │ │ └── testc.c │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ └── string.h │ ├── ReportStatusCodeRouter │ ├── Pei │ │ ├── ReportStatusCodeRouterPei.c │ │ ├── ReportStatusCodeRouterPei.h │ │ ├── ReportStatusCodeRouterPei.inf │ │ ├── ReportStatusCodeRouterPei.uni │ │ └── ReportStatusCodeRouterPeiExtra.uni │ ├── RuntimeDxe │ │ ├── ReportStatusCodeRouterRuntimeDxe.c │ │ ├── ReportStatusCodeRouterRuntimeDxe.h │ │ ├── ReportStatusCodeRouterRuntimeDxe.inf │ │ ├── ReportStatusCodeRouterRuntimeDxe.uni │ │ └── ReportStatusCodeRouterRuntimeDxeExtra.uni │ └── Smm │ │ ├── ReportStatusCodeRouterSmm.c │ │ ├── ReportStatusCodeRouterSmm.h │ │ ├── ReportStatusCodeRouterSmm.inf │ │ ├── ReportStatusCodeRouterSmm.uni │ │ └── ReportStatusCodeRouterSmmExtra.uni │ ├── ResetSystemPei │ ├── ResetSystem.c │ ├── ResetSystem.h │ ├── ResetSystemPei.inf │ ├── ResetSystemPei.uni │ └── ResetSystemPeiExtra.uni │ ├── ResetSystemRuntimeDxe │ ├── ResetSystem.c │ ├── ResetSystem.h │ ├── ResetSystemRuntimeDxe.inf │ ├── ResetSystemRuntimeDxe.uni │ └── ResetSystemRuntimeDxeExtra.uni │ ├── SectionExtractionDxe │ ├── SectionExtractionDxe.c │ ├── SectionExtractionDxe.inf │ ├── SectionExtractionDxe.uni │ └── SectionExtractionDxeExtra.uni │ ├── SectionExtractionPei │ ├── SectionExtractionPei.c │ ├── SectionExtractionPei.inf │ ├── SectionExtractionPei.uni │ └── SectionExtractionPeiExtra.uni │ ├── SecurityStubDxe │ ├── Defer3rdPartyImageLoad.c │ ├── Defer3rdPartyImageLoad.h │ ├── SecurityStub.c │ ├── SecurityStubDxe.inf │ ├── SecurityStubDxe.uni │ └── SecurityStubDxeExtra.uni │ ├── SerialDxe │ ├── SerialDxe.inf │ ├── SerialDxe.uni │ ├── SerialDxeExtra.uni │ └── SerialIo.c │ ├── SetupBrowserDxe │ ├── Expression.c │ ├── Expression.h │ ├── IfrParse.c │ ├── Presentation.c │ ├── Setup.c │ ├── Setup.h │ ├── SetupBrowser.uni │ ├── SetupBrowserDxe.inf │ └── SetupBrowserExtra.uni │ ├── SmbiosDxe │ ├── SmbiosDxe.c │ ├── SmbiosDxe.h │ ├── SmbiosDxe.inf │ ├── SmbiosDxe.uni │ └── SmbiosDxeExtra.uni │ ├── SmbiosMeasurementDxe │ ├── SmbiosMeasurementDxe.c │ ├── SmbiosMeasurementDxe.inf │ ├── SmbiosMeasurementDxe.uni │ └── SmbiosMeasurementDxeExtra.uni │ ├── SmmCommunicationBufferDxe │ ├── SmmCommunicationBufferDxe.c │ ├── SmmCommunicationBufferDxe.inf │ ├── SmmCommunicationBufferDxe.uni │ └── SmmCommunicationBufferExtraDxe.uni │ ├── StatusCodeHandler │ ├── Pei │ │ ├── MemoryStausCodeWorker.c │ │ ├── SerialStatusCodeWorker.c │ │ ├── StatusCodeHandlerPei.c │ │ ├── StatusCodeHandlerPei.h │ │ ├── StatusCodeHandlerPei.inf │ │ ├── StatusCodeHandlerPei.uni │ │ └── StatusCodeHandlerPeiExtra.uni │ ├── RuntimeDxe │ │ ├── MemoryStatusCodeWorker.c │ │ ├── SerialStatusCodeWorker.c │ │ ├── StatusCodeHandlerRuntimeDxe.c │ │ ├── StatusCodeHandlerRuntimeDxe.h │ │ ├── StatusCodeHandlerRuntimeDxe.inf │ │ ├── StatusCodeHandlerRuntimeDxe.uni │ │ └── StatusCodeHandlerRuntimeDxeExtra.uni │ └── Smm │ │ ├── MemoryStatusCodeWorker.c │ │ ├── SerialStatusCodeWorker.c │ │ ├── StatusCodeHandlerSmm.c │ │ ├── StatusCodeHandlerSmm.h │ │ ├── StatusCodeHandlerSmm.inf │ │ ├── StatusCodeHandlerSmm.uni │ │ └── StatusCodeHandlerSmmExtra.uni │ ├── TimestampDxe │ ├── TimestampDxe.c │ ├── TimestampDxe.inf │ ├── TimestampDxe.uni │ └── TimestampDxeExtra.uni │ ├── Variable │ ├── Pei │ │ ├── PeiVariable.uni │ │ ├── PeiVariableExtra.uni │ │ ├── Variable.c │ │ ├── Variable.h │ │ └── VariablePei.inf │ └── RuntimeDxe │ │ ├── Measurement.c │ │ ├── PrivilegePolymorphic.h │ │ ├── Reclaim.c │ │ ├── RuntimeDxeUnitTest │ │ ├── VariableLockRequestToLockUnitTest.c │ │ └── VariableLockRequestToLockUnitTest.inf │ │ ├── SpeculationBarrierDxe.c │ │ ├── SpeculationBarrierSmm.c │ │ ├── TcgMorLockDxe.c │ │ ├── TcgMorLockSmm.c │ │ ├── VarCheck.c │ │ ├── Variable.c │ │ ├── Variable.h │ │ ├── VariableDxe.c │ │ ├── VariableExLib.c │ │ ├── VariableLockRequestToLock.c │ │ ├── VariableNonVolatile.c │ │ ├── VariableNonVolatile.h │ │ ├── VariableParsing.c │ │ ├── VariableParsing.h │ │ ├── VariablePolicySmmDxe.c │ │ ├── VariableRuntimeCache.c │ │ ├── VariableRuntimeCache.h │ │ ├── VariableRuntimeDxe.inf │ │ ├── VariableRuntimeDxe.uni │ │ ├── VariableRuntimeDxeExtra.uni │ │ ├── VariableSmm.c │ │ ├── VariableSmm.inf │ │ ├── VariableSmm.uni │ │ ├── VariableSmmExtra.uni │ │ ├── VariableSmmRuntimeDxe.c │ │ ├── VariableSmmRuntimeDxe.inf │ │ ├── VariableSmmRuntimeDxe.uni │ │ ├── VariableSmmRuntimeDxeExtra.uni │ │ ├── VariableStandaloneMm.c │ │ ├── VariableStandaloneMm.inf │ │ └── VariableTraditionalMm.c │ └── WatchdogTimerDxe │ ├── WatchdogTimer.c │ ├── WatchdogTimer.h │ ├── WatchdogTimer.inf │ ├── WatchdogTimer.uni │ └── WatchdogTimerExtra.uni ├── MdePkg ├── Include │ ├── AArch64 │ │ └── ProcessorBind.h │ ├── Arm │ │ └── ProcessorBind.h │ ├── Base.h │ ├── Ebc │ │ └── ProcessorBind.h │ ├── Guid │ │ ├── Acpi.h │ │ ├── Apriori.h │ │ ├── AprioriFileName.h │ │ ├── Btt.h │ │ ├── CapsuleReport.h │ │ ├── Cper.h │ │ ├── DebugImageInfoTable.h │ │ ├── DxeServices.h │ │ ├── EventGroup.h │ │ ├── EventLegacyBios.h │ │ ├── FileInfo.h │ │ ├── FileSystemInfo.h │ │ ├── FileSystemVolumeLabelInfo.h │ │ ├── FirmwareContentsSigned.h │ │ ├── FirmwareFileSystem2.h │ │ ├── FirmwareFileSystem3.h │ │ ├── FmpCapsule.h │ │ ├── GlobalVariable.h │ │ ├── Gpt.h │ │ ├── GraphicsInfoHob.h │ │ ├── HardwareErrorVariable.h │ │ ├── HiiFormMapMethodGuid.h │ │ ├── HiiKeyBoardLayout.h │ │ ├── HiiPlatformSetupFormset.h │ │ ├── HobList.h │ │ ├── ImageAuthentication.h │ │ ├── JsonCapsule.h │ │ ├── MdePkgTokenSpace.h │ │ ├── MemoryAllocationHob.h │ │ ├── MemoryAttributesTable.h │ │ ├── MemoryOverwriteControl.h │ │ ├── Mps.h │ │ ├── PcAnsi.h │ │ ├── RtPropertiesTable.h │ │ ├── SmBios.h │ │ ├── SmramMemoryReserve.h │ │ ├── StatusCodeDataTypeId.h │ │ ├── SystemResourceTable.h │ │ ├── VectorHandoffTable.h │ │ └── WinCertificate.h │ ├── Ia32 │ │ ├── Nasm.inc │ │ └── ProcessorBind.h │ ├── IndustryStandard │ │ ├── Acpi.h │ │ ├── Acpi10.h │ │ ├── Acpi20.h │ │ ├── Acpi30.h │ │ ├── Acpi40.h │ │ ├── Acpi50.h │ │ ├── Acpi51.h │ │ ├── Acpi60.h │ │ ├── Acpi61.h │ │ ├── Acpi62.h │ │ ├── Acpi63.h │ │ ├── AcpiAml.h │ │ ├── AlertStandardFormatTable.h │ │ ├── Atapi.h │ │ ├── Bluetooth.h │ │ ├── Bmp.h │ │ ├── Cxl.h │ │ ├── Cxl11.h │ │ ├── DebugPort2Table.h │ │ ├── DebugPortTable.h │ │ ├── Dhcp.h │ │ ├── DmaRemappingReportingTable.h │ │ ├── ElTorito.h │ │ ├── Emmc.h │ │ ├── HighPrecisionEventTimerTable.h │ │ ├── Hsti.h │ │ ├── Http11.h │ │ ├── IScsiBootFirmwareTable.h │ │ ├── IoRemappingTable.h │ │ ├── Ipmi.h │ │ ├── IpmiFruInformationStorage.h │ │ ├── IpmiNetFnApp.h │ │ ├── IpmiNetFnBridge.h │ │ ├── IpmiNetFnChassis.h │ │ ├── IpmiNetFnFirmware.h │ │ ├── IpmiNetFnGroupExtension.h │ │ ├── IpmiNetFnSensorEvent.h │ │ ├── IpmiNetFnStorage.h │ │ ├── IpmiNetFnTransport.h │ │ ├── LegacyBiosMpTable.h │ │ ├── LowPowerIdleTable.h │ │ ├── Mbr.h │ │ ├── MemoryMappedConfigurationSpaceAccessTable.h │ │ ├── MemoryOverwriteRequestControlLock.h │ │ ├── Nvme.h │ │ ├── Pci.h │ │ ├── Pci22.h │ │ ├── Pci23.h │ │ ├── Pci30.h │ │ ├── PciCodeId.h │ │ ├── PciExpress21.h │ │ ├── PciExpress30.h │ │ ├── PciExpress31.h │ │ ├── PciExpress40.h │ │ ├── PciExpress50.h │ │ ├── PeImage.h │ │ ├── Scsi.h │ │ ├── Sd.h │ │ ├── SdramSpd.h │ │ ├── SdramSpdDdr3.h │ │ ├── SdramSpdDdr4.h │ │ ├── SdramSpdLpDdr.h │ │ ├── SerialPortConsoleRedirectionTable.h │ │ ├── ServiceProcessorManagementInterfaceTable.h │ │ ├── SmBios.h │ │ ├── SmBus.h │ │ ├── Spdm.h │ │ ├── TcgPhysicalPresence.h │ │ ├── TcgStorageCore.h │ │ ├── TcgStorageOpal.h │ │ ├── TcpaAcpi.h │ │ ├── Tls1.h │ │ ├── Tpm12.h │ │ ├── Tpm20.h │ │ ├── Tpm2Acpi.h │ │ ├── TpmPtp.h │ │ ├── TpmTis.h │ │ ├── Udf.h │ │ ├── UefiTcgPlatform.h │ │ ├── Usb.h │ │ ├── WatchdogActionTable.h │ │ ├── WatchdogResourceTable.h │ │ ├── WindowsSmmSecurityMitigationTable.h │ │ └── WindowsUxCapsule.h │ ├── Library │ │ ├── BaseLib.h │ │ ├── BaseMemoryLib.h │ │ ├── CacheMaintenanceLib.h │ │ ├── CpuLib.h │ │ ├── DebugLib.h │ │ ├── DebugPrintErrorLevelLib.h │ │ ├── DevicePathLib.h │ │ ├── DxeCoreEntryPoint.h │ │ ├── DxeServicesLib.h │ │ ├── DxeServicesTableLib.h │ │ ├── ExtractGuidedSectionLib.h │ │ ├── FileHandleLib.h │ │ ├── HobLib.h │ │ ├── HstiLib.h │ │ ├── IoLib.h │ │ ├── MemoryAllocationLib.h │ │ ├── MmServicesTableLib.h │ │ ├── OrderedCollectionLib.h │ │ ├── PcdLib.h │ │ ├── PciCf8Lib.h │ │ ├── PciExpressLib.h │ │ ├── PciLib.h │ │ ├── PciSegmentInfoLib.h │ │ ├── PciSegmentLib.h │ │ ├── PeCoffExtraActionLib.h │ │ ├── PeCoffGetEntryPointLib.h │ │ ├── PeCoffLib.h │ │ ├── PeiCoreEntryPoint.h │ │ ├── PeiServicesLib.h │ │ ├── PeiServicesTablePointerLib.h │ │ ├── PeimEntryPoint.h │ │ ├── PerformanceLib.h │ │ ├── PostCodeLib.h │ │ ├── PrintLib.h │ │ ├── ReportStatusCodeLib.h │ │ ├── ResourcePublicationLib.h │ │ ├── RngLib.h │ │ ├── S3BootScriptLib.h │ │ ├── S3IoLib.h │ │ ├── S3PciLib.h │ │ ├── S3PciSegmentLib.h │ │ ├── S3SmbusLib.h │ │ ├── S3StallLib.h │ │ ├── SafeIntLib.h │ │ ├── SerialPortLib.h │ │ ├── SmbusLib.h │ │ ├── SmiHandlerProfileLib.h │ │ ├── SmmIoLib.h │ │ ├── SmmLib.h │ │ ├── SmmMemLib.h │ │ ├── SmmPeriodicSmiLib.h │ │ ├── SmmServicesTableLib.h │ │ ├── StandaloneMmDriverEntryPoint.h │ │ ├── SynchronizationLib.h │ │ ├── TimerLib.h │ │ ├── UefiApplicationEntryPoint.h │ │ ├── UefiBootServicesTableLib.h │ │ ├── UefiDecompressLib.h │ │ ├── UefiDriverEntryPoint.h │ │ ├── UefiLib.h │ │ ├── UefiRuntimeLib.h │ │ ├── UefiRuntimeServicesTableLib.h │ │ ├── UefiScsiLib.h │ │ ├── UefiUsbLib.h │ │ └── UnitTestLib.h │ ├── Pi │ │ ├── PiBootMode.h │ │ ├── PiDependency.h │ │ ├── PiDxeCis.h │ │ ├── PiFirmwareFile.h │ │ ├── PiFirmwareVolume.h │ │ ├── PiHob.h │ │ ├── PiI2c.h │ │ ├── PiMmCis.h │ │ ├── PiMultiPhase.h │ │ ├── PiPeiCis.h │ │ ├── PiS3BootScript.h │ │ ├── PiSmmCis.h │ │ └── PiStatusCode.h │ ├── PiDxe.h │ ├── PiMm.h │ ├── PiPei.h │ ├── PiSmm.h │ ├── Ppi │ │ ├── BlockIo.h │ │ ├── BlockIo2.h │ │ ├── BootInRecoveryMode.h │ │ ├── Capsule.h │ │ ├── CpuIo.h │ │ ├── Decompress.h │ │ ├── DelayedDispatch.h │ │ ├── DeviceRecoveryModule.h │ │ ├── DxeIpl.h │ │ ├── EndOfPeiPhase.h │ │ ├── FirmwareVolume.h │ │ ├── FirmwareVolumeInfo.h │ │ ├── FirmwareVolumeInfo2.h │ │ ├── Graphics.h │ │ ├── GuidedSectionExtraction.h │ │ ├── I2cMaster.h │ │ ├── IsaHc.h │ │ ├── LoadFile.h │ │ ├── LoadImage.h │ │ ├── MasterBootMode.h │ │ ├── MemoryDiscovered.h │ │ ├── MmAccess.h │ │ ├── MmControl.h │ │ ├── MpServices.h │ │ ├── Pcd.h │ │ ├── PcdInfo.h │ │ ├── PciCfg2.h │ │ ├── PeiCoreFvLocation.h │ │ ├── PiPcd.h │ │ ├── PiPcdInfo.h │ │ ├── ReadOnlyVariable2.h │ │ ├── RecoveryModule.h │ │ ├── ReportStatusCodeHandler.h │ │ ├── Reset.h │ │ ├── Reset2.h │ │ ├── S3Resume2.h │ │ ├── SecHobData.h │ │ ├── SecPlatformInformation.h │ │ ├── SecPlatformInformation2.h │ │ ├── Security2.h │ │ ├── Smbus2.h │ │ ├── Stall.h │ │ ├── StatusCode.h │ │ ├── SuperIo.h │ │ ├── TemporaryRamDone.h │ │ ├── TemporaryRamSupport.h │ │ └── VectorHandoffInfo.h │ ├── Protocol │ │ ├── AbsolutePointer.h │ │ ├── AcpiSystemDescriptionTable.h │ │ ├── AcpiTable.h │ │ ├── AdapterInformation.h │ │ ├── Arp.h │ │ ├── AtaPassThru.h │ │ ├── AuthenticationInfo.h │ │ ├── Bds.h │ │ ├── Bis.h │ │ ├── BlockIo.h │ │ ├── BlockIo2.h │ │ ├── BlockIoCrypto.h │ │ ├── BluetoothAttribute.h │ │ ├── BluetoothConfig.h │ │ ├── BluetoothHc.h │ │ ├── BluetoothIo.h │ │ ├── BluetoothLeConfig.h │ │ ├── BootManagerPolicy.h │ │ ├── BusSpecificDriverOverride.h │ │ ├── Capsule.h │ │ ├── ComponentName.h │ │ ├── ComponentName2.h │ │ ├── Cpu.h │ │ ├── CpuIo2.h │ │ ├── DebugPort.h │ │ ├── DebugSupport.h │ │ ├── Decompress.h │ │ ├── DeferredImageLoad.h │ │ ├── DeviceIo.h │ │ ├── DevicePath.h │ │ ├── DevicePathFromText.h │ │ ├── DevicePathToText.h │ │ ├── DevicePathUtilities.h │ │ ├── Dhcp4.h │ │ ├── Dhcp6.h │ │ ├── DiskInfo.h │ │ ├── DiskIo.h │ │ ├── DiskIo2.h │ │ ├── Dns4.h │ │ ├── Dns6.h │ │ ├── DriverBinding.h │ │ ├── DriverConfiguration.h │ │ ├── DriverConfiguration2.h │ │ ├── DriverDiagnostics.h │ │ ├── DriverDiagnostics2.h │ │ ├── DriverFamilyOverride.h │ │ ├── DriverHealth.h │ │ ├── DriverSupportedEfiVersion.h │ │ ├── DxeMmReadyToLock.h │ │ ├── DxeSmmReadyToLock.h │ │ ├── Eap.h │ │ ├── EapConfiguration.h │ │ ├── EapManagement.h │ │ ├── EapManagement2.h │ │ ├── Ebc.h │ │ ├── EdidActive.h │ │ ├── EdidDiscovered.h │ │ ├── EdidOverride.h │ │ ├── EraseBlock.h │ │ ├── FirmwareManagement.h │ │ ├── FirmwareVolume2.h │ │ ├── FirmwareVolumeBlock.h │ │ ├── FormBrowser2.h │ │ ├── Ftp4.h │ │ ├── GraphicsOutput.h │ │ ├── GuidedSectionExtraction.h │ │ ├── Hash.h │ │ ├── Hash2.h │ │ ├── HiiConfigAccess.h │ │ ├── HiiConfigKeyword.h │ │ ├── HiiConfigRouting.h │ │ ├── HiiDatabase.h │ │ ├── HiiFont.h │ │ ├── HiiImage.h │ │ ├── HiiImageDecoder.h │ │ ├── HiiImageEx.h │ │ ├── HiiPackageList.h │ │ ├── HiiPopup.h │ │ ├── HiiString.h │ │ ├── Http.h │ │ ├── HttpBootCallback.h │ │ ├── HttpUtilities.h │ │ ├── I2cBusConfigurationManagement.h │ │ ├── I2cEnumerate.h │ │ ├── I2cHost.h │ │ ├── I2cIo.h │ │ ├── I2cMaster.h │ │ ├── IScsiInitiatorName.h │ │ ├── IdeControllerInit.h │ │ ├── IncompatiblePciDeviceSupport.h │ │ ├── Ip4.h │ │ ├── Ip4Config.h │ │ ├── Ip4Config2.h │ │ ├── Ip6.h │ │ ├── Ip6Config.h │ │ ├── IpSec.h │ │ ├── IpSecConfig.h │ │ ├── IsaHc.h │ │ ├── Kms.h │ │ ├── LegacyRegion2.h │ │ ├── LegacySpiController.h │ │ ├── LegacySpiFlash.h │ │ ├── LegacySpiSmmController.h │ │ ├── LegacySpiSmmFlash.h │ │ ├── LoadFile.h │ │ ├── LoadFile2.h │ │ ├── LoadedImage.h │ │ ├── ManagedNetwork.h │ │ ├── Metronome.h │ │ ├── MmAccess.h │ │ ├── MmBase.h │ │ ├── MmCommunication.h │ │ ├── MmCommunication2.h │ │ ├── MmConfiguration.h │ │ ├── MmControl.h │ │ ├── MmCpu.h │ │ ├── MmCpuIo.h │ │ ├── MmEndOfDxe.h │ │ ├── MmGpiDispatch.h │ │ ├── MmIoTrapDispatch.h │ │ ├── MmMp.h │ │ ├── MmPciRootBridgeIo.h │ │ ├── MmPeriodicTimerDispatch.h │ │ ├── MmPowerButtonDispatch.h │ │ ├── MmReadyToLock.h │ │ ├── MmReportStatusCodeHandler.h │ │ ├── MmStandbyButtonDispatch.h │ │ ├── MmStatusCode.h │ │ ├── MmSwDispatch.h │ │ ├── MmSxDispatch.h │ │ ├── MmUsbDispatch.h │ │ ├── MonotonicCounter.h │ │ ├── MpService.h │ │ ├── Mtftp4.h │ │ ├── Mtftp6.h │ │ ├── NetworkInterfaceIdentifier.h │ │ ├── NvdimmLabel.h │ │ ├── NvmExpressPassthru.h │ │ ├── PartitionInfo.h │ │ ├── Pcd.h │ │ ├── PcdInfo.h │ │ ├── PciEnumerationComplete.h │ │ ├── PciHostBridgeResourceAllocation.h │ │ ├── PciHotPlugInit.h │ │ ├── PciHotPlugRequest.h │ │ ├── PciIo.h │ │ ├── PciOverride.h │ │ ├── PciPlatform.h │ │ ├── PciRootBridgeIo.h │ │ ├── PiPcd.h │ │ ├── PiPcdInfo.h │ │ ├── Pkcs7Verify.h │ │ ├── PlatformDriverOverride.h │ │ ├── PlatformToDriverConfiguration.h │ │ ├── PxeBaseCode.h │ │ ├── PxeBaseCodeCallBack.h │ │ ├── RamDisk.h │ │ ├── RealTimeClock.h │ │ ├── RegularExpressionProtocol.h │ │ ├── ReportStatusCodeHandler.h │ │ ├── Reset.h │ │ ├── ResetNotification.h │ │ ├── Rest.h │ │ ├── RestEx.h │ │ ├── RestJsonStructure.h │ │ ├── Rng.h │ │ ├── Runtime.h │ │ ├── S3SaveState.h │ │ ├── S3SmmSaveState.h │ │ ├── ScsiIo.h │ │ ├── ScsiPassThru.h │ │ ├── ScsiPassThruExt.h │ │ ├── SdMmcPassThru.h │ │ ├── Security.h │ │ ├── Security2.h │ │ ├── SecurityPolicy.h │ │ ├── SerialIo.h │ │ ├── ServiceBinding.h │ │ ├── Shell.h │ │ ├── ShellDynamicCommand.h │ │ ├── ShellParameters.h │ │ ├── SimpleFileSystem.h │ │ ├── SimpleNetwork.h │ │ ├── SimplePointer.h │ │ ├── SimpleTextIn.h │ │ ├── SimpleTextInEx.h │ │ ├── SimpleTextOut.h │ │ ├── SmartCardEdge.h │ │ ├── SmartCardReader.h │ │ ├── Smbios.h │ │ ├── SmbusHc.h │ │ ├── SmmAccess2.h │ │ ├── SmmBase2.h │ │ ├── SmmCommunication.h │ │ ├── SmmConfiguration.h │ │ ├── SmmControl2.h │ │ ├── SmmCpu.h │ │ ├── SmmCpuIo2.h │ │ ├── SmmEndOfDxe.h │ │ ├── SmmGpiDispatch2.h │ │ ├── SmmIoTrapDispatch2.h │ │ ├── SmmPciRootBridgeIo.h │ │ ├── SmmPeriodicTimerDispatch2.h │ │ ├── SmmPowerButtonDispatch2.h │ │ ├── SmmReadyToLock.h │ │ ├── SmmReportStatusCodeHandler.h │ │ ├── SmmStandbyButtonDispatch2.h │ │ ├── SmmStatusCode.h │ │ ├── SmmSwDispatch2.h │ │ ├── SmmSxDispatch2.h │ │ ├── SmmUsbDispatch2.h │ │ ├── SpiConfiguration.h │ │ ├── SpiHc.h │ │ ├── SpiIo.h │ │ ├── SpiNorFlash.h │ │ ├── SpiSmmConfiguration.h │ │ ├── SpiSmmHc.h │ │ ├── SpiSmmNorFlash.h │ │ ├── StatusCode.h │ │ ├── StorageSecurityCommand.h │ │ ├── SuperIo.h │ │ ├── SuperIoControl.h │ │ ├── Supplicant.h │ │ ├── TapeIo.h │ │ ├── Tcg2Protocol.h │ │ ├── TcgService.h │ │ ├── Tcp4.h │ │ ├── Tcp6.h │ │ ├── Timer.h │ │ ├── Timestamp.h │ │ ├── Tls.h │ │ ├── TlsConfig.h │ │ ├── TrEEProtocol.h │ │ ├── Udp4.h │ │ ├── Udp6.h │ │ ├── UfsDeviceConfig.h │ │ ├── UgaDraw.h │ │ ├── UgaIo.h │ │ ├── UnicodeCollation.h │ │ ├── Usb2HostController.h │ │ ├── UsbFunctionIo.h │ │ ├── UsbHostController.h │ │ ├── UsbIo.h │ │ ├── UserCredential.h │ │ ├── UserCredential2.h │ │ ├── UserManager.h │ │ ├── Variable.h │ │ ├── VariableWrite.h │ │ ├── VlanConfig.h │ │ ├── WatchdogTimer.h │ │ ├── WiFi.h │ │ └── WiFi2.h │ ├── Register │ │ ├── Amd │ │ │ ├── Cpuid.h │ │ │ ├── Fam17Msr.h │ │ │ ├── Ghcb.h │ │ │ └── Msr.h │ │ └── Intel │ │ │ ├── ArchitecturalMsr.h │ │ │ ├── Cpuid.h │ │ │ ├── LocalApic.h │ │ │ ├── Microcode.h │ │ │ ├── Msr.h │ │ │ ├── Msr │ │ │ ├── AtomMsr.h │ │ │ ├── BroadwellMsr.h │ │ │ ├── Core2Msr.h │ │ │ ├── CoreMsr.h │ │ │ ├── GoldmontMsr.h │ │ │ ├── GoldmontPlusMsr.h │ │ │ ├── HaswellEMsr.h │ │ │ ├── HaswellMsr.h │ │ │ ├── IvyBridgeMsr.h │ │ │ ├── NehalemMsr.h │ │ │ ├── P6Msr.h │ │ │ ├── Pentium4Msr.h │ │ │ ├── PentiumMMsr.h │ │ │ ├── PentiumMsr.h │ │ │ ├── SandyBridgeMsr.h │ │ │ ├── SilvermontMsr.h │ │ │ ├── SkylakeMsr.h │ │ │ ├── Xeon5600Msr.h │ │ │ ├── XeonDMsr.h │ │ │ ├── XeonE7Msr.h │ │ │ └── XeonPhiMsr.h │ │ │ ├── SmramSaveStateMap.h │ │ │ ├── StmApi.h │ │ │ ├── StmResourceDescriptor.h │ │ │ └── StmStatusCode.h │ ├── RiscV64 │ │ └── ProcessorBind.h │ ├── Uefi.h │ ├── Uefi │ │ ├── UefiAcpiDataTable.h │ │ ├── UefiBaseType.h │ │ ├── UefiGpt.h │ │ ├── UefiInternalFormRepresentation.h │ │ ├── UefiMultiPhase.h │ │ ├── UefiPxe.h │ │ └── UefiSpec.h │ └── X64 │ │ ├── Nasm.inc │ │ └── ProcessorBind.h ├── Library │ ├── BaseCacheMaintenanceLib │ │ ├── ArmCache.c │ │ ├── BaseCacheMaintenanceLib.inf │ │ ├── BaseCacheMaintenanceLib.uni │ │ ├── EbcCache.c │ │ ├── RiscVCache.c │ │ └── X86Cache.c │ ├── BaseCacheMaintenanceLibNull │ │ ├── BaseCacheMaintenanceLibNull.c │ │ ├── BaseCacheMaintenanceLibNull.inf │ │ └── BaseCacheMaintenanceLibNull.uni │ ├── BaseCpuLib │ │ ├── AArch64 │ │ │ ├── CpuFlushTlb.S │ │ │ ├── CpuFlushTlb.asm │ │ │ ├── CpuSleep.S │ │ │ └── CpuSleep.asm │ │ ├── Arm │ │ │ ├── CpuFlushTlb.S │ │ │ ├── CpuFlushTlb.asm │ │ │ ├── CpuSleep.S │ │ │ └── CpuSleep.asm │ │ ├── BaseCpuLib.inf │ │ ├── BaseCpuLib.uni │ │ ├── Ebc │ │ │ └── CpuSleepFlushTlb.c │ │ ├── Ia32 │ │ │ ├── CpuFlushTlb.c │ │ │ ├── CpuFlushTlb.nasm │ │ │ ├── CpuFlushTlbGcc.c │ │ │ ├── CpuSleep.c │ │ │ ├── CpuSleep.nasm │ │ │ └── CpuSleepGcc.c │ │ ├── RiscV │ │ │ └── Cpu.S │ │ └── X64 │ │ │ ├── CpuFlushTlb.nasm │ │ │ └── CpuSleep.nasm │ ├── BaseCpuLibNull │ │ ├── BaseCpuLibNull.c │ │ ├── BaseCpuLibNull.inf │ │ └── BaseCpuLibNull.uni │ ├── BaseDebugLibNull │ │ ├── BaseDebugLibNull.inf │ │ ├── BaseDebugLibNull.uni │ │ └── DebugLib.c │ ├── BaseDebugLibSerialPort │ │ ├── BaseDebugLibSerialPort.inf │ │ ├── BaseDebugLibSerialPort.uni │ │ └── DebugLib.c │ ├── BaseDebugPrintErrorLevelLib │ │ ├── BaseDebugPrintErrorLevelLib.c │ │ ├── BaseDebugPrintErrorLevelLib.inf │ │ └── BaseDebugPrintErrorLevelLib.uni │ ├── BaseExtractGuidedSectionLib │ │ ├── BaseExtractGuidedSectionLib.c │ │ ├── BaseExtractGuidedSectionLib.inf │ │ └── BaseExtractGuidedSectionLib.uni │ ├── BaseIoLibIntrinsic │ │ ├── AArch64 │ │ │ ├── ArmVirtMmio.S │ │ │ └── ArmVirtMmio.asm │ │ ├── Arm │ │ │ ├── ArmVirtMmio.S │ │ │ └── ArmVirtMmio.asm │ │ ├── BaseIoLibIntrinsic.inf │ │ ├── BaseIoLibIntrinsic.uni │ │ ├── BaseIoLibIntrinsicArmVirt.inf │ │ ├── BaseIoLibIntrinsicArmVirt.uni │ │ ├── BaseIoLibIntrinsicInternal.h │ │ ├── BaseIoLibIntrinsicSev.inf │ │ ├── Ia32 │ │ │ ├── IoFifo.nasm │ │ │ └── IoFifoSev.nasm │ │ ├── IoHighLevel.c │ │ ├── IoLib.c │ │ ├── IoLibArmVirt.c │ │ ├── IoLibEbc.c │ │ ├── IoLibGcc.c │ │ ├── IoLibMmioBuffer.c │ │ ├── IoLibMsc.c │ │ ├── IoLibNoIo.c │ │ └── X64 │ │ │ ├── IoFifo.nasm │ │ │ └── IoFifoSev.nasm │ ├── BaseLib │ │ ├── AArch64 │ │ │ ├── CpuBreakpoint.S │ │ │ ├── CpuBreakpoint.asm │ │ │ ├── DisableInterrupts.S │ │ │ ├── DisableInterrupts.asm │ │ │ ├── EnableInterrupts.S │ │ │ ├── EnableInterrupts.asm │ │ │ ├── GetInterruptsState.S │ │ │ ├── GetInterruptsState.asm │ │ │ ├── MemoryFence.S │ │ │ ├── MemoryFence.asm │ │ │ ├── SetJumpLongJump.S │ │ │ ├── SetJumpLongJump.asm │ │ │ ├── SpeculationBarrier.S │ │ │ ├── SpeculationBarrier.asm │ │ │ ├── SwitchStack.S │ │ │ └── SwitchStack.asm │ │ ├── ARShiftU64.c │ │ ├── Arm │ │ │ ├── CpuBreakpoint.S │ │ │ ├── CpuBreakpoint.asm │ │ │ ├── CpuPause.asm │ │ │ ├── DisableInterrupts.S │ │ │ ├── DisableInterrupts.asm │ │ │ ├── EnableInterrupts.S │ │ │ ├── EnableInterrupts.asm │ │ │ ├── GetInterruptsState.S │ │ │ ├── GetInterruptsState.asm │ │ │ ├── InternalSwitchStack.c │ │ │ ├── Math64.S │ │ │ ├── MemoryFence.S │ │ │ ├── MemoryFence.asm │ │ │ ├── SetJumpLongJump.S │ │ │ ├── SetJumpLongJump.asm │ │ │ ├── SpeculationBarrier.S │ │ │ ├── SpeculationBarrier.asm │ │ │ ├── SwitchStack.S │ │ │ ├── SwitchStack.asm │ │ │ └── Unaligned.c │ │ ├── BaseLib.inf │ │ ├── BaseLib.uni │ │ ├── BaseLibInternals.h │ │ ├── BitField.c │ │ ├── CheckSum.c │ │ ├── ChkStkGcc.c │ │ ├── Cpu.c │ │ ├── CpuDeadLoop.c │ │ ├── DivS64x64Remainder.c │ │ ├── DivU64x32.c │ │ ├── DivU64x32Remainder.c │ │ ├── DivU64x64Remainder.c │ │ ├── Ebc │ │ │ ├── CpuBreakpoint.c │ │ │ ├── SetJumpLongJump.c │ │ │ ├── SpeculationBarrier.c │ │ │ └── SwitchStack.c │ │ ├── FilePaths.c │ │ ├── GetPowerOfTwo32.c │ │ ├── GetPowerOfTwo64.c │ │ ├── HighBitSet32.c │ │ ├── HighBitSet64.c │ │ ├── Ia32 │ │ │ ├── ARShiftU64.c │ │ │ ├── ARShiftU64.nasm │ │ │ ├── CpuBreakpoint.c │ │ │ ├── CpuBreakpoint.nasm │ │ │ ├── CpuId.c │ │ │ ├── CpuId.nasm │ │ │ ├── CpuIdEx.c │ │ │ ├── CpuIdEx.nasm │ │ │ ├── CpuPause.c │ │ │ ├── CpuPause.nasm │ │ │ ├── DisableCache.c │ │ │ ├── DisableCache.nasm │ │ │ ├── DisableInterrupts.c │ │ │ ├── DisableInterrupts.nasm │ │ │ ├── DisablePaging32.c │ │ │ ├── DisablePaging32.nasm │ │ │ ├── DivS64x64Remainder.c │ │ │ ├── DivU64x32.c │ │ │ ├── DivU64x32.nasm │ │ │ ├── DivU64x32Remainder.c │ │ │ ├── DivU64x32Remainder.nasm │ │ │ ├── DivU64x64Remainder.nasm │ │ │ ├── EnableCache.c │ │ │ ├── EnableCache.nasm │ │ │ ├── EnableDisableInterrupts.c │ │ │ ├── EnableDisableInterrupts.nasm │ │ │ ├── EnableInterrupts.c │ │ │ ├── EnableInterrupts.nasm │ │ │ ├── EnablePaging32.c │ │ │ ├── EnablePaging32.nasm │ │ │ ├── EnablePaging64.nasm │ │ │ ├── FlushCacheLine.c │ │ │ ├── FlushCacheLine.nasm │ │ │ ├── FxRestore.c │ │ │ ├── FxRestore.nasm │ │ │ ├── FxSave.c │ │ │ ├── FxSave.nasm │ │ │ ├── GccInline.c │ │ │ ├── GccInlinePriv.c │ │ │ ├── InternalSwitchStack.c │ │ │ ├── InternalSwitchStack.nasm │ │ │ ├── Invd.c │ │ │ ├── Invd.nasm │ │ │ ├── LRotU64.c │ │ │ ├── LRotU64.nasm │ │ │ ├── LShiftU64.c │ │ │ ├── LShiftU64.nasm │ │ │ ├── Lfence.nasm │ │ │ ├── LongJump.nasm │ │ │ ├── ModU64x32.c │ │ │ ├── ModU64x32.nasm │ │ │ ├── Monitor.c │ │ │ ├── Monitor.nasm │ │ │ ├── MultU64x32.c │ │ │ ├── MultU64x32.nasm │ │ │ ├── MultU64x64.c │ │ │ ├── MultU64x64.nasm │ │ │ ├── Mwait.c │ │ │ ├── Mwait.nasm │ │ │ ├── Non-existing.c │ │ │ ├── RRotU64.c │ │ │ ├── RRotU64.nasm │ │ │ ├── RShiftU64.c │ │ │ ├── RShiftU64.nasm │ │ │ ├── RdRand.nasm │ │ │ ├── ReadCr0.c │ │ │ ├── ReadCr0.nasm │ │ │ ├── ReadCr2.c │ │ │ ├── ReadCr2.nasm │ │ │ ├── ReadCr3.c │ │ │ ├── ReadCr3.nasm │ │ │ ├── ReadCr4.c │ │ │ ├── ReadCr4.nasm │ │ │ ├── ReadCs.c │ │ │ ├── ReadCs.nasm │ │ │ ├── ReadDr0.c │ │ │ ├── ReadDr0.nasm │ │ │ ├── ReadDr1.c │ │ │ ├── ReadDr1.nasm │ │ │ ├── ReadDr2.c │ │ │ ├── ReadDr2.nasm │ │ │ ├── ReadDr3.c │ │ │ ├── ReadDr3.nasm │ │ │ ├── ReadDr4.c │ │ │ ├── ReadDr4.nasm │ │ │ ├── ReadDr5.c │ │ │ ├── ReadDr5.nasm │ │ │ ├── ReadDr6.c │ │ │ ├── ReadDr6.nasm │ │ │ ├── ReadDr7.c │ │ │ ├── ReadDr7.nasm │ │ │ ├── ReadDs.c │ │ │ ├── ReadDs.nasm │ │ │ ├── ReadEflags.c │ │ │ ├── ReadEflags.nasm │ │ │ ├── ReadEs.c │ │ │ ├── ReadEs.nasm │ │ │ ├── ReadFs.c │ │ │ ├── ReadFs.nasm │ │ │ ├── ReadGdtr.c │ │ │ ├── ReadGdtr.nasm │ │ │ ├── ReadGs.c │ │ │ ├── ReadGs.nasm │ │ │ ├── ReadIdtr.c │ │ │ ├── ReadIdtr.nasm │ │ │ ├── ReadLdtr.c │ │ │ ├── ReadLdtr.nasm │ │ │ ├── ReadMm0.c │ │ │ ├── ReadMm0.nasm │ │ │ ├── ReadMm1.c │ │ │ ├── ReadMm1.nasm │ │ │ ├── ReadMm2.c │ │ │ ├── ReadMm2.nasm │ │ │ ├── ReadMm3.c │ │ │ ├── ReadMm3.nasm │ │ │ ├── ReadMm4.c │ │ │ ├── ReadMm4.nasm │ │ │ ├── ReadMm5.c │ │ │ ├── ReadMm5.nasm │ │ │ ├── ReadMm6.c │ │ │ ├── ReadMm6.nasm │ │ │ ├── ReadMm7.c │ │ │ ├── ReadMm7.nasm │ │ │ ├── ReadMsr64.c │ │ │ ├── ReadMsr64.nasm │ │ │ ├── ReadPmc.c │ │ │ ├── ReadPmc.nasm │ │ │ ├── ReadSs.c │ │ │ ├── ReadSs.nasm │ │ │ ├── ReadTr.c │ │ │ ├── ReadTr.nasm │ │ │ ├── ReadTsc.c │ │ │ ├── ReadTsc.nasm │ │ │ ├── SetJump.nasm │ │ │ ├── SwapBytes64.c │ │ │ ├── SwapBytes64.nasm │ │ │ ├── Thunk16.nasm │ │ │ ├── VmgExit.nasm │ │ │ ├── Wbinvd.c │ │ │ ├── Wbinvd.nasm │ │ │ ├── WriteCr0.c │ │ │ ├── WriteCr0.nasm │ │ │ ├── WriteCr2.c │ │ │ ├── WriteCr2.nasm │ │ │ ├── WriteCr3.c │ │ │ ├── WriteCr3.nasm │ │ │ ├── WriteCr4.c │ │ │ ├── WriteCr4.nasm │ │ │ ├── WriteDr0.c │ │ │ ├── WriteDr0.nasm │ │ │ ├── WriteDr1.c │ │ │ ├── WriteDr1.nasm │ │ │ ├── WriteDr2.c │ │ │ ├── WriteDr2.nasm │ │ │ ├── WriteDr3.c │ │ │ ├── WriteDr3.nasm │ │ │ ├── WriteDr4.c │ │ │ ├── WriteDr4.nasm │ │ │ ├── WriteDr5.c │ │ │ ├── WriteDr5.nasm │ │ │ ├── WriteDr6.c │ │ │ ├── WriteDr6.nasm │ │ │ ├── WriteDr7.c │ │ │ ├── WriteDr7.nasm │ │ │ ├── WriteGdtr.c │ │ │ ├── WriteGdtr.nasm │ │ │ ├── WriteIdtr.c │ │ │ ├── WriteIdtr.nasm │ │ │ ├── WriteLdtr.c │ │ │ ├── WriteLdtr.nasm │ │ │ ├── WriteMm0.c │ │ │ ├── WriteMm0.nasm │ │ │ ├── WriteMm1.c │ │ │ ├── WriteMm1.nasm │ │ │ ├── WriteMm2.c │ │ │ ├── WriteMm2.nasm │ │ │ ├── WriteMm3.c │ │ │ ├── WriteMm3.nasm │ │ │ ├── WriteMm4.c │ │ │ ├── WriteMm4.nasm │ │ │ ├── WriteMm5.c │ │ │ ├── WriteMm5.nasm │ │ │ ├── WriteMm6.c │ │ │ ├── WriteMm6.nasm │ │ │ ├── WriteMm7.c │ │ │ ├── WriteMm7.nasm │ │ │ ├── WriteMsr64.c │ │ │ ├── WriteMsr64.nasm │ │ │ ├── WriteTr.nasm │ │ │ └── XGetBv.nasm │ │ ├── LRotU32.c │ │ ├── LRotU64.c │ │ ├── LShiftU64.c │ │ ├── LinkedList.c │ │ ├── LongJump.c │ │ ├── LowBitSet32.c │ │ ├── LowBitSet64.c │ │ ├── Math64.c │ │ ├── ModU64x32.c │ │ ├── MultS64x64.c │ │ ├── MultU64x32.c │ │ ├── MultU64x64.c │ │ ├── RRotU32.c │ │ ├── RRotU64.c │ │ ├── RShiftU64.c │ │ ├── RiscV64 │ │ │ ├── CpuBreakpoint.c │ │ │ ├── CpuPause.c │ │ │ ├── DisableInterrupts.c │ │ │ ├── EnableInterrupts.c │ │ │ ├── FlushCache.S │ │ │ ├── GetInterruptState.c │ │ │ ├── InternalSwitchStack.c │ │ │ ├── RiscVCpuBreakpoint.S │ │ │ ├── RiscVCpuPause.S │ │ │ ├── RiscVInterrupt.S │ │ │ └── RiscVSetJumpLongJump.S │ │ ├── SafeString.c │ │ ├── SetJump.c │ │ ├── String.c │ │ ├── SwapBytes16.c │ │ ├── SwapBytes32.c │ │ ├── SwapBytes64.c │ │ ├── SwitchStack.c │ │ ├── Unaligned.c │ │ ├── UnitTestHost.c │ │ ├── UnitTestHost.h │ │ ├── UnitTestHostBaseLib.inf │ │ ├── UnitTestHostBaseLib.uni │ │ ├── X64 │ │ │ ├── CpuBreakpoint.c │ │ │ ├── CpuBreakpoint.nasm │ │ │ ├── CpuId.nasm │ │ │ ├── CpuIdEx.nasm │ │ │ ├── CpuPause.nasm │ │ │ ├── DisableCache.nasm │ │ │ ├── DisableInterrupts.nasm │ │ │ ├── DisablePaging64.nasm │ │ │ ├── EnableCache.nasm │ │ │ ├── EnableDisableInterrupts.nasm │ │ │ ├── EnableInterrupts.nasm │ │ │ ├── FlushCacheLine.nasm │ │ │ ├── FxRestore.nasm │ │ │ ├── FxSave.nasm │ │ │ ├── GccInline.c │ │ │ ├── GccInlinePriv.c │ │ │ ├── Invd.nasm │ │ │ ├── Lfence.nasm │ │ │ ├── LongJump.nasm │ │ │ ├── Monitor.nasm │ │ │ ├── Mwait.nasm │ │ │ ├── Non-existing.c │ │ │ ├── RdRand.nasm │ │ │ ├── ReadCr0.nasm │ │ │ ├── ReadCr2.nasm │ │ │ ├── ReadCr3.nasm │ │ │ ├── ReadCr4.nasm │ │ │ ├── ReadCs.nasm │ │ │ ├── ReadDr0.nasm │ │ │ ├── ReadDr1.nasm │ │ │ ├── ReadDr2.nasm │ │ │ ├── ReadDr3.nasm │ │ │ ├── ReadDr4.nasm │ │ │ ├── ReadDr5.nasm │ │ │ ├── ReadDr6.nasm │ │ │ ├── ReadDr7.nasm │ │ │ ├── ReadDs.nasm │ │ │ ├── ReadEflags.nasm │ │ │ ├── ReadEs.nasm │ │ │ ├── ReadFs.nasm │ │ │ ├── ReadGdtr.nasm │ │ │ ├── ReadGs.nasm │ │ │ ├── ReadIdtr.nasm │ │ │ ├── ReadLdtr.nasm │ │ │ ├── ReadMm0.nasm │ │ │ ├── ReadMm1.nasm │ │ │ ├── ReadMm2.nasm │ │ │ ├── ReadMm3.nasm │ │ │ ├── ReadMm4.nasm │ │ │ ├── ReadMm5.nasm │ │ │ ├── ReadMm6.nasm │ │ │ ├── ReadMm7.nasm │ │ │ ├── ReadMsr64.c │ │ │ ├── ReadMsr64.nasm │ │ │ ├── ReadPmc.nasm │ │ │ ├── ReadSs.nasm │ │ │ ├── ReadTr.nasm │ │ │ ├── ReadTsc.nasm │ │ │ ├── SetJump.nasm │ │ │ ├── SwitchStack.nasm │ │ │ ├── Thunk16.nasm │ │ │ ├── VmgExit.nasm │ │ │ ├── Wbinvd.nasm │ │ │ ├── WriteCr0.nasm │ │ │ ├── WriteCr2.nasm │ │ │ ├── WriteCr3.nasm │ │ │ ├── WriteCr4.nasm │ │ │ ├── WriteDr0.nasm │ │ │ ├── WriteDr1.nasm │ │ │ ├── WriteDr2.nasm │ │ │ ├── WriteDr3.nasm │ │ │ ├── WriteDr4.nasm │ │ │ ├── WriteDr5.nasm │ │ │ ├── WriteDr6.nasm │ │ │ ├── WriteDr7.nasm │ │ │ ├── WriteGdtr.nasm │ │ │ ├── WriteIdtr.nasm │ │ │ ├── WriteLdtr.nasm │ │ │ ├── WriteMm0.nasm │ │ │ ├── WriteMm1.nasm │ │ │ ├── WriteMm2.nasm │ │ │ ├── WriteMm3.nasm │ │ │ ├── WriteMm4.nasm │ │ │ ├── WriteMm5.nasm │ │ │ ├── WriteMm6.nasm │ │ │ ├── WriteMm7.nasm │ │ │ ├── WriteMsr64.c │ │ │ ├── WriteMsr64.nasm │ │ │ ├── WriteTr.nasm │ │ │ └── XGetBv.nasm │ │ ├── X86DisablePaging32.c │ │ ├── X86DisablePaging64.c │ │ ├── X86EnablePaging32.c │ │ ├── X86EnablePaging64.c │ │ ├── X86FxRestore.c │ │ ├── X86FxSave.c │ │ ├── X86GetInterruptState.c │ │ ├── X86MemoryFence.c │ │ ├── X86Msr.c │ │ ├── X86PatchInstruction.c │ │ ├── X86RdRand.c │ │ ├── X86ReadGdtr.c │ │ ├── X86ReadIdtr.c │ │ ├── X86SpeculationBarrier.c │ │ ├── X86Thunk.c │ │ ├── X86UnitTestHost.c │ │ ├── X86WriteGdtr.c │ │ └── X86WriteIdtr.c │ ├── BaseMemoryLib │ │ ├── BaseMemoryLib.inf │ │ ├── BaseMemoryLib.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMem.c │ │ ├── CopyMemWrapper.c │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLibGeneric.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibMmx │ │ ├── BaseMemoryLibMmx.inf │ │ ├── BaseMemoryLibMmx.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── Ia32 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── X64 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibOptDxe │ │ ├── AArch64 │ │ │ ├── CompareGuid.S │ │ │ ├── CompareMem.S │ │ │ ├── CopyMem.S │ │ │ ├── ScanMem.S │ │ │ └── SetMem.S │ │ ├── Arm │ │ │ ├── CompareGuid.S │ │ │ ├── CompareGuid.asm │ │ │ ├── CompareMem.S │ │ │ ├── CompareMem.asm │ │ │ ├── CopyMem.S │ │ │ ├── CopyMem.asm │ │ │ ├── MemLibGuid.c │ │ │ ├── ScanMem.S │ │ │ ├── ScanMem.asm │ │ │ ├── ScanMemGeneric.c │ │ │ ├── SetMem.S │ │ │ └── SetMem.asm │ │ ├── BaseMemoryLibOptDxe.inf │ │ ├── BaseMemoryLibOptDxe.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── Ia32 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── X64 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibOptPei │ │ ├── BaseMemoryLibOptPei.inf │ │ ├── BaseMemoryLibOptPei.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── Ia32 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── X64 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibRepStr │ │ ├── BaseMemoryLibRepStr.inf │ │ ├── BaseMemoryLibRepStr.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── Ia32 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── X64 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibSse2 │ │ ├── BaseMemoryLibSse2.inf │ │ ├── BaseMemoryLibSse2.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── Ia32 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── X64 │ │ │ ├── CompareMem.nasm │ │ │ ├── CopyMem.nasm │ │ │ ├── IsZeroBuffer.nasm │ │ │ ├── ScanMem16.nasm │ │ │ ├── ScanMem32.nasm │ │ │ ├── ScanMem64.nasm │ │ │ ├── ScanMem8.nasm │ │ │ ├── SetMem.nasm │ │ │ ├── SetMem16.nasm │ │ │ ├── SetMem32.nasm │ │ │ ├── SetMem64.nasm │ │ │ └── ZeroMem.nasm │ │ └── ZeroMemWrapper.c │ ├── BaseOrderedCollectionRedBlackTreeLib │ │ ├── BaseOrderedCollectionRedBlackTreeLib.c │ │ ├── BaseOrderedCollectionRedBlackTreeLib.inf │ │ └── BaseOrderedCollectionRedBlackTreeLib.uni │ ├── BasePcdLibNull │ │ ├── BasePcdLibNull.inf │ │ ├── BasePcdLibNull.uni │ │ └── PcdLib.c │ ├── BasePciCf8Lib │ │ ├── BasePciCf8Lib.inf │ │ ├── BasePciCf8Lib.uni │ │ └── PciCf8Lib.c │ ├── BasePciExpressLib │ │ ├── BasePciExpressLib.inf │ │ ├── BasePciExpressLib.uni │ │ └── PciExpressLib.c │ ├── BasePciLibCf8 │ │ ├── BasePciLibCf8.inf │ │ ├── BasePciLibCf8.uni │ │ └── PciLib.c │ ├── BasePciLibPciExpress │ │ ├── BasePciLibPciExpress.inf │ │ ├── BasePciLibPciExpress.uni │ │ └── PciLib.c │ ├── BasePciSegmentInfoLibNull │ │ ├── BasePciSegmentInfoLibNull.inf │ │ ├── BasePciSegmentInfoLibNull.uni │ │ └── PciSegmentInfoLib.c │ ├── BasePciSegmentLibPci │ │ ├── BasePciSegmentLibPci.inf │ │ ├── BasePciSegmentLibPci.uni │ │ └── PciSegmentLib.c │ ├── BasePeCoffExtraActionLibNull │ │ ├── BasePeCoffExtraActionLibNull.inf │ │ ├── PeCoffExtraActionLib.c │ │ └── PeCoffExtraActionLibNull.uni │ ├── BasePeCoffGetEntryPointLib │ │ ├── BasePeCoffGetEntryPointLib.inf │ │ ├── BasePeCoffGetEntryPointLib.uni │ │ └── PeCoffGetEntryPoint.c │ ├── BasePeCoffLib │ │ ├── Arm │ │ │ └── PeCoffLoaderEx.c │ │ ├── BasePeCoff.c │ │ ├── BasePeCoffLib.inf │ │ ├── BasePeCoffLib.uni │ │ ├── BasePeCoffLibInternals.h │ │ ├── PeCoffLoaderEx.c │ │ └── RiscV │ │ │ └── PeCoffLoaderEx.c │ ├── BasePerformanceLibNull │ │ ├── BasePerformanceLibNull.inf │ │ ├── BasePerformanceLibNull.uni │ │ └── PerformanceLib.c │ ├── BasePostCodeLibDebug │ │ ├── BasePostCodeLibDebug.inf │ │ ├── BasePostCodeLibDebug.uni │ │ └── PostCode.c │ ├── BasePostCodeLibPort80 │ │ ├── BasePostCodeLibPort80.inf │ │ ├── BasePostCodeLibPort80.uni │ │ └── PostCode.c │ ├── BasePrintLib │ │ ├── BasePrintLib.inf │ │ ├── BasePrintLib.uni │ │ ├── PrintLib.c │ │ ├── PrintLibInternal.c │ │ └── PrintLibInternal.h │ ├── BaseReportStatusCodeLibNull │ │ ├── BaseReportStatusCodeLib.c │ │ ├── BaseReportStatusCodeLibNull.inf │ │ └── BaseReportStatusCodeLibNull.uni │ ├── BaseRngLib │ │ ├── BaseRng.c │ │ ├── BaseRngLib.inf │ │ └── BaseRngLib.uni │ ├── BaseRngLibNull │ │ ├── BaseRngLibNull.c │ │ ├── BaseRngLibNull.inf │ │ └── BaseRngLibNull.uni │ ├── BaseRngLibTimerLib │ │ ├── BaseRngLibTimerLib.inf │ │ ├── BaseRngLibTimerLib.uni │ │ └── RngLibTimer.c │ ├── BaseS3BootScriptLibNull │ │ ├── BaseS3BootScriptLibNull.inf │ │ ├── BaseS3BootScriptLibNull.uni │ │ └── BootScriptLib.c │ ├── BaseS3IoLib │ │ ├── BaseS3IoLib.inf │ │ ├── BaseS3IoLib.uni │ │ └── S3IoLib.c │ ├── BaseS3PciLib │ │ ├── BaseS3PciLib.inf │ │ ├── BaseS3PciLib.uni │ │ └── S3PciLib.c │ ├── BaseS3PciSegmentLib │ │ ├── BaseS3PciSegmentLib.inf │ │ ├── BaseS3PciSegmentLib.uni │ │ └── S3PciSegmentLib.c │ ├── BaseS3SmbusLib │ │ ├── BaseS3SmbusLib.inf │ │ ├── BaseS3SmbusLib.uni │ │ └── S3SmbusLib.c │ ├── BaseS3StallLib │ │ ├── BaseS3StallLib.inf │ │ ├── BaseS3StallLib.uni │ │ └── S3StallLib.c │ ├── BaseSafeIntLib │ │ ├── BaseSafeIntLib.inf │ │ ├── SafeIntLib.c │ │ ├── SafeIntLib32.c │ │ ├── SafeIntLib64.c │ │ └── SafeIntLibEbc.c │ ├── BaseSerialPortLibNull │ │ ├── BaseSerialPortLibNull.c │ │ ├── BaseSerialPortLibNull.inf │ │ └── BaseSerialPortLibNull.uni │ ├── BaseSmbusLibNull │ │ ├── BaseSmbusLibNull.c │ │ ├── BaseSmbusLibNull.inf │ │ └── BaseSmbusLibNull.uni │ ├── BaseStackCheckLib │ │ ├── BaseStackCheckGcc.c │ │ ├── BaseStackCheckLib.inf │ │ ├── BaseStackCheckLib.uni │ │ └── BaseStackCheckNull.c │ ├── BaseSynchronizationLib │ │ ├── AArch64 │ │ │ ├── Synchronization.S │ │ │ └── Synchronization.asm │ │ ├── Arm │ │ │ ├── Synchronization.S │ │ │ └── Synchronization.asm │ │ ├── BaseSynchronizationLib.inf │ │ ├── BaseSynchronizationLib.uni │ │ ├── BaseSynchronizationLibInternals.h │ │ ├── Ebc │ │ │ └── Synchronization.c │ │ ├── Ia32 │ │ │ ├── GccInline.c │ │ │ ├── InterlockedCompareExchange16.c │ │ │ ├── InterlockedCompareExchange16.nasm │ │ │ ├── InterlockedCompareExchange32.c │ │ │ ├── InterlockedCompareExchange32.nasm │ │ │ ├── InterlockedCompareExchange64.c │ │ │ ├── InterlockedCompareExchange64.nasm │ │ │ ├── InterlockedDecrement.nasm │ │ │ ├── InterlockedIncrement.nasm │ │ │ └── InternalGetSpinLockProperties.c │ │ ├── InterlockedDecrementMsc.c │ │ ├── InterlockedIncrementMsc.c │ │ ├── RiscV64 │ │ │ └── Synchronization.S │ │ ├── Synchronization.c │ │ ├── SynchronizationGcc.c │ │ ├── SynchronizationMsc.c │ │ └── X64 │ │ │ ├── GccInline.c │ │ │ ├── InterlockedCompareExchange16.c │ │ │ ├── InterlockedCompareExchange16.nasm │ │ │ ├── InterlockedCompareExchange32.c │ │ │ ├── InterlockedCompareExchange32.nasm │ │ │ ├── InterlockedCompareExchange64.c │ │ │ ├── InterlockedCompareExchange64.nasm │ │ │ ├── InterlockedDecrement.nasm │ │ │ └── InterlockedIncrement.nasm │ ├── BaseTimerLibNullTemplate │ │ ├── BaseTimerLibNullTemplate.inf │ │ ├── BaseTimerLibNullTemplate.uni │ │ └── TimerLibNull.c │ ├── BaseUefiDecompressLib │ │ ├── BaseUefiDecompressLib.c │ │ ├── BaseUefiDecompressLib.inf │ │ ├── BaseUefiDecompressLib.uni │ │ ├── BaseUefiDecompressLibInternals.h │ │ ├── BaseUefiTianoCustomDecompressLib.c │ │ └── BaseUefiTianoCustomDecompressLib.inf │ ├── DxeCoreEntryPoint │ │ ├── DxeCoreEntryPoint.c │ │ ├── DxeCoreEntryPoint.inf │ │ └── DxeCoreEntryPoint.uni │ ├── DxeCoreHobLib │ │ ├── DxeCoreHobLib.inf │ │ ├── DxeCoreHobLib.uni │ │ └── HobLib.c │ ├── DxeExtractGuidedSectionLib │ │ ├── DxeExtractGuidedSectionLib.c │ │ ├── DxeExtractGuidedSectionLib.inf │ │ └── DxeExtractGuidedSectionLib.uni │ ├── DxeHobLib │ │ ├── DxeHobLib.inf │ │ ├── DxeHobLib.uni │ │ └── HobLib.c │ ├── DxeHstiLib │ │ ├── DxeHstiLib.inf │ │ ├── DxeHstiLib.uni │ │ ├── HstiAip.c │ │ ├── HstiDxe.c │ │ └── HstiDxe.h │ ├── DxeIoLibCpuIo2 │ │ ├── DxeCpuIo2LibInternal.h │ │ ├── DxeIoLibCpuIo2.inf │ │ ├── DxeIoLibCpuIo2.uni │ │ ├── IoHighLevel.c │ │ ├── IoLib.c │ │ └── IoLibMmioBuffer.c │ ├── DxePcdLib │ │ ├── DxePcdLib.c │ │ ├── DxePcdLib.inf │ │ └── DxePcdLib.uni │ ├── DxeRngLib │ │ ├── DxeRngLib.c │ │ ├── DxeRngLib.inf │ │ └── DxeRngLib.uni │ ├── DxeRuntimeDebugLibSerialPort │ │ ├── DebugLib.c │ │ ├── DxeRuntimeDebugLibSerialPort.inf │ │ └── DxeRuntimeDebugLibSerialPort.uni │ ├── DxeRuntimePciExpressLib │ │ ├── DxeRuntimePciExpressLib.inf │ │ ├── DxeRuntimePciExpressLib.uni │ │ └── PciExpressLib.c │ ├── DxeServicesLib │ │ ├── Allocate.c │ │ ├── DxeServicesLib.c │ │ ├── DxeServicesLib.inf │ │ ├── DxeServicesLib.uni │ │ └── X64 │ │ │ └── Allocate.c │ ├── DxeServicesTableLib │ │ ├── DxeServicesTableLib.c │ │ ├── DxeServicesTableLib.inf │ │ └── DxeServicesTableLib.uni │ ├── DxeSmbusLib │ │ ├── DxeSmbusLib.c │ │ ├── DxeSmbusLib.inf │ │ ├── DxeSmbusLib.uni │ │ ├── InternalSmbusLib.h │ │ └── SmbusLib.c │ ├── MmServicesTableLib │ │ ├── MmServicesTableLib.c │ │ ├── MmServicesTableLib.inf │ │ └── MmServicesTableLib.uni │ ├── PciSegmentLibSegmentInfo │ │ ├── BasePciSegmentLib.c │ │ ├── BasePciSegmentLibSegmentInfo.inf │ │ ├── BasePciSegmentLibSegmentInfo.uni │ │ ├── DxeRuntimePciSegmentLib.c │ │ ├── DxeRuntimePciSegmentLibSegmentInfo.inf │ │ ├── DxeRuntimePciSegmentLibSegmentInfo.uni │ │ ├── PciSegmentLibCommon.c │ │ └── PciSegmentLibCommon.h │ ├── PeiCoreEntryPoint │ │ ├── PeiCoreEntryPoint.c │ │ ├── PeiCoreEntryPoint.inf │ │ └── PeiCoreEntryPoint.uni │ ├── PeiDxePostCodeLibReportStatusCode │ │ ├── PeiDxePostCodeLibReportStatusCode.inf │ │ ├── PeiDxePostCodeLibReportStatusCode.uni │ │ └── PostCode.c │ ├── PeiExtractGuidedSectionLib │ │ ├── PeiExtractGuidedSectionLib.c │ │ ├── PeiExtractGuidedSectionLib.inf │ │ └── PeiExtractGuidedSectionLib.uni │ ├── PeiHobLib │ │ ├── HobLib.c │ │ ├── PeiHobLib.inf │ │ └── PeiHobLib.uni │ ├── PeiIoLibCpuIo │ │ ├── IoHighLevel.c │ │ ├── IoLib.c │ │ ├── IoLibMmioBuffer.c │ │ ├── PeiIoLibCpuIo.inf │ │ └── PeiIoLibCpuIo.uni │ ├── PeiMemoryAllocationLib │ │ ├── MemoryAllocationLib.c │ │ ├── PeiMemoryAllocationLib.inf │ │ └── PeiMemoryAllocationLib.uni │ ├── PeiMemoryLib │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLib.c │ │ ├── MemLibGeneric.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── PeiMemoryLib.inf │ │ ├── PeiMemoryLib.uni │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ └── ZeroMemWrapper.c │ ├── PeiPcdLib │ │ ├── PeiPcdLib.c │ │ ├── PeiPcdLib.inf │ │ └── PeiPcdLib.uni │ ├── PeiPciLibPciCfg2 │ │ ├── PciLib.c │ │ ├── PeiPciLibPciCfg2.inf │ │ └── PeiPciLibPciCfg2.uni │ ├── PeiPciSegmentLibPciCfg2 │ │ ├── PciSegmentLib.c │ │ ├── PeiPciSegmentLibPciCfg2.inf │ │ └── PeiPciSegmentLibPciCfg2.uni │ ├── PeiResourcePublicationLib │ │ ├── PeiResourcePublicationLib.c │ │ ├── PeiResourcePublicationLib.inf │ │ └── PeiResourcePublicationLib.uni │ ├── PeiServicesLib │ │ ├── PeiServicesLib.c │ │ ├── PeiServicesLib.inf │ │ └── PeiServicesLib.uni │ ├── PeiServicesTablePointerLib │ │ ├── PeiServicesTablePointer.c │ │ ├── PeiServicesTablePointerLib.inf │ │ └── PeiServicesTablePointerLib.uni │ ├── PeiServicesTablePointerLibIdt │ │ ├── PeiServicesTablePointer.c │ │ ├── PeiServicesTablePointerLibIdt.inf │ │ └── PeiServicesTablePointerLibIdt.uni │ ├── PeiSmbusLibSmbus2Ppi │ │ ├── InternalSmbusLib.h │ │ ├── PeiSmbusLib.c │ │ ├── PeiSmbusLibSmbus2Ppi.inf │ │ ├── PeiSmbusLibSmbus2Ppi.uni │ │ └── SmbusLib.c │ ├── PeimEntryPoint │ │ ├── PeimEntryPoint.c │ │ ├── PeimEntryPoint.inf │ │ └── PeimEntryPoint.uni │ ├── SecPeiDxeTimerLibCpu │ │ ├── SecPeiDxeTimerLibCpu.inf │ │ ├── SecPeiDxeTimerLibCpu.uni │ │ └── X86TimerLib.c │ ├── SmiHandlerProfileLibNull │ │ ├── SmiHandlerProfileLibNull.c │ │ ├── SmiHandlerProfileLibNull.inf │ │ └── SmiHandlerProfileLibNull.uni │ ├── SmmIoLib │ │ ├── SmmIoLib.c │ │ ├── SmmIoLib.inf │ │ └── SmmIoLib.uni │ ├── SmmIoLibSmmCpuIo2 │ │ ├── IoHighLevel.c │ │ ├── IoLib.c │ │ ├── IoLibMmioBuffer.c │ │ ├── SmmCpuIoLibInternal.h │ │ ├── SmmIoLibSmmCpuIo2.inf │ │ └── SmmIoLibSmmCpuIo2.uni │ ├── SmmLibNull │ │ ├── SmmLibNull.c │ │ ├── SmmLibNull.inf │ │ └── SmmLibNull.uni │ ├── SmmMemLib │ │ ├── SmmMemLib.c │ │ ├── SmmMemLib.inf │ │ └── SmmMemLib.uni │ ├── SmmMemoryAllocationLib │ │ ├── MemoryAllocationLib.c │ │ ├── SmmMemoryAllocationLib.inf │ │ └── SmmMemoryAllocationLib.uni │ ├── SmmPciExpressLib │ │ ├── PciExpressLib.c │ │ └── SmmPciExpressLib.inf │ ├── SmmPciLibPciRootBridgeIo │ │ ├── PciLib.c │ │ ├── SmmPciLibPciRootBridgeIo.inf │ │ └── SmmPciLibPciRootBridgeIo.uni │ ├── SmmPeriodicSmiLib │ │ ├── SmmPeriodicSmiLib.c │ │ ├── SmmPeriodicSmiLib.inf │ │ └── SmmPeriodicSmiLib.uni │ ├── SmmServicesTableLib │ │ ├── SmmServicesTableLib.c │ │ ├── SmmServicesTableLib.inf │ │ └── SmmServicesTableLib.uni │ ├── StandaloneMmDriverEntryPoint │ │ ├── StandaloneMmDriverEntryPoint.c │ │ ├── StandaloneMmDriverEntryPoint.inf │ │ └── StandaloneMmDriverEntryPoint.uni │ ├── StandaloneMmServicesTableLib │ │ ├── StandaloneMmServicesTableLib.c │ │ ├── StandaloneMmServicesTableLib.inf │ │ └── StandaloneMmServicesTableLib.uni │ ├── UefiApplicationEntryPoint │ │ ├── ApplicationEntryPoint.c │ │ ├── UefiApplicationEntryPoint.inf │ │ └── UefiApplicationEntryPoint.uni │ ├── UefiBootServicesTableLib │ │ ├── UefiBootServicesTableLib.c │ │ ├── UefiBootServicesTableLib.inf │ │ └── UefiBootServicesTableLib.uni │ ├── UefiDebugLibConOut │ │ ├── DebugLib.c │ │ ├── DebugLibConstructor.c │ │ ├── UefiDebugLibConOut.inf │ │ └── UefiDebugLibConOut.uni │ ├── UefiDebugLibDebugPortProtocol │ │ ├── DebugLib.c │ │ ├── DebugLibConstructor.c │ │ ├── UefiDebugLibDebugPortProtocol.inf │ │ └── UefiDebugLibDebugPortProtocol.uni │ ├── UefiDebugLibStdErr │ │ ├── DebugLib.c │ │ ├── DebugLibConstructor.c │ │ ├── UefiDebugLibStdErr.inf │ │ └── UefiDebugLibStdErr.uni │ ├── UefiDevicePathLib │ │ ├── DevicePathFromText.c │ │ ├── DevicePathToText.c │ │ ├── DevicePathUtilities.c │ │ ├── UefiDevicePathLib.c │ │ ├── UefiDevicePathLib.h │ │ ├── UefiDevicePathLib.inf │ │ ├── UefiDevicePathLib.uni │ │ ├── UefiDevicePathLibOptionalDevicePathProtocol.c │ │ ├── UefiDevicePathLibOptionalDevicePathProtocol.inf │ │ └── UefiDevicePathLibOptionalDevicePathProtocol.uni │ ├── UefiDevicePathLibDevicePathProtocol │ │ ├── UefiDevicePathLib.c │ │ ├── UefiDevicePathLibDevicePathProtocol.inf │ │ └── UefiDevicePathLibDevicePathProtocol.uni │ ├── UefiDriverEntryPoint │ │ ├── DriverEntryPoint.c │ │ ├── UefiDriverEntryPoint.inf │ │ └── UefiDriverEntryPoint.uni │ ├── UefiFileHandleLib │ │ ├── UefiFileHandleLib.c │ │ ├── UefiFileHandleLib.inf │ │ └── UefiFileHandleLib.uni │ ├── UefiLib │ │ ├── Acpi.c │ │ ├── Console.c │ │ ├── UefiDriverModel.c │ │ ├── UefiLib.c │ │ ├── UefiLib.inf │ │ ├── UefiLib.uni │ │ ├── UefiLibInternal.h │ │ ├── UefiLibPrint.c │ │ └── UefiNotTiano.c │ ├── UefiMemoryAllocationLib │ │ ├── MemoryAllocationLib.c │ │ ├── UefiMemoryAllocationLib.inf │ │ └── UefiMemoryAllocationLib.uni │ ├── UefiMemoryLib │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── IsZeroBufferWrapper.c │ │ ├── MemLib.c │ │ ├── MemLibGeneric.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── UefiMemoryLib.inf │ │ ├── UefiMemoryLib.uni │ │ └── ZeroMemWrapper.c │ ├── UefiPciLibPciRootBridgeIo │ │ ├── PciLib.c │ │ ├── UefiPciLibPciRootBridgeIo.inf │ │ └── UefiPciLibPciRootBridgeIo.uni │ ├── UefiPciSegmentLibPciRootBridgeIo │ │ ├── PciSegmentLib.c │ │ ├── PciSegmentLib.h │ │ ├── UefiPciSegmentLibPciRootBridgeIo.inf │ │ └── UefiPciSegmentLibPciRootBridgeIo.uni │ ├── UefiRuntimeLib │ │ ├── RuntimeLib.c │ │ ├── UefiRuntimeLib.inf │ │ └── UefiRuntimeLib.uni │ ├── UefiRuntimeServicesTableLib │ │ ├── UefiRuntimeServicesTableLib.c │ │ ├── UefiRuntimeServicesTableLib.inf │ │ └── UefiRuntimeServicesTableLib.uni │ ├── UefiScsiLib │ │ ├── UefiScsiLib.c │ │ ├── UefiScsiLib.inf │ │ └── UefiScsiLib.uni │ └── UefiUsbLib │ │ ├── Hid.c │ │ ├── UefiUsbLib.inf │ │ ├── UefiUsbLib.uni │ │ ├── UefiUsbLibInternal.h │ │ └── UsbDxeLib.c ├── MdePkg.ci.yaml ├── MdePkg.dec ├── MdePkg.dsc ├── MdePkg.uni ├── MdePkgExtra.uni └── Test │ ├── MdePkgHostTest.dsc │ └── UnitTest │ ├── Include │ └── Library │ │ └── UnitTestHostBaseLib.h │ └── Library │ ├── BaseLib │ ├── Base64UnitTest.c │ ├── BaseLibUnitTestsHost.inf │ └── BaseLibUnitTestsUefi.inf │ └── BaseSafeIntLib │ ├── SafeIntLibUintnIntnUnitTests32.c │ ├── SafeIntLibUintnIntnUnitTests64.c │ ├── TestBaseSafeIntLib.c │ ├── TestBaseSafeIntLib.h │ ├── TestBaseSafeIntLib.uni │ ├── TestBaseSafeIntLibDxe.inf │ ├── TestBaseSafeIntLibHost.inf │ ├── TestBaseSafeIntLibPei.inf │ ├── TestBaseSafeIntLibSmm.inf │ └── TestBaseSafeIntLibUefiShell.inf ├── NetworkPkg ├── Application │ └── VConfig │ │ ├── VConfig.c │ │ ├── VConfig.inf │ │ ├── VConfig.uni │ │ ├── VConfigExtra.uni │ │ └── VConfigStrings.uni ├── ArpDxe │ ├── ArpDriver.c │ ├── ArpDriver.h │ ├── ArpDxe.inf │ ├── ArpDxe.uni │ ├── ArpDxeExtra.uni │ ├── ArpImpl.c │ ├── ArpImpl.h │ ├── ArpMain.c │ └── ComponentName.c ├── Dhcp4Dxe │ ├── ComponentName.c │ ├── Dhcp4Driver.c │ ├── Dhcp4Driver.h │ ├── Dhcp4Dxe.inf │ ├── Dhcp4Dxe.uni │ ├── Dhcp4DxeExtra.uni │ ├── Dhcp4Impl.c │ ├── Dhcp4Impl.h │ ├── Dhcp4Io.c │ ├── Dhcp4Io.h │ ├── Dhcp4Option.c │ └── Dhcp4Option.h ├── Dhcp6Dxe │ ├── ComponentName.c │ ├── Dhcp6Driver.c │ ├── Dhcp6Driver.h │ ├── Dhcp6Dxe.inf │ ├── Dhcp6Dxe.uni │ ├── Dhcp6DxeExtra.uni │ ├── Dhcp6Impl.c │ ├── Dhcp6Impl.h │ ├── Dhcp6Io.c │ ├── Dhcp6Io.h │ ├── Dhcp6Utility.c │ └── Dhcp6Utility.h ├── DnsDxe │ ├── ComponentName.c │ ├── DnsDhcp.c │ ├── DnsDhcp.h │ ├── DnsDriver.c │ ├── DnsDriver.h │ ├── DnsDxe.inf │ ├── DnsDxe.uni │ ├── DnsDxeExtra.uni │ ├── DnsImpl.c │ ├── DnsImpl.h │ └── DnsProtocol.c ├── DpcDxe │ ├── Dpc.c │ ├── Dpc.h │ ├── DpcDxe.inf │ ├── DpcDxe.uni │ └── DpcDxeExtra.uni ├── HttpBootDxe │ ├── HttpBootClient.c │ ├── HttpBootClient.h │ ├── HttpBootComponentName.c │ ├── HttpBootComponentName.h │ ├── HttpBootConfig.c │ ├── HttpBootConfig.h │ ├── HttpBootConfigNVDataStruc.h │ ├── HttpBootConfigStrings.uni │ ├── HttpBootConfigVfr.vfr │ ├── HttpBootDhcp4.c │ ├── HttpBootDhcp4.h │ ├── HttpBootDhcp6.c │ ├── HttpBootDhcp6.h │ ├── HttpBootDxe.c │ ├── HttpBootDxe.h │ ├── HttpBootDxe.inf │ ├── HttpBootDxe.uni │ ├── HttpBootDxeExtra.uni │ ├── HttpBootImpl.c │ ├── HttpBootImpl.h │ ├── HttpBootSupport.c │ └── HttpBootSupport.h ├── HttpDxe │ ├── ComponentName.c │ ├── ComponentName.h │ ├── HttpDns.c │ ├── HttpDns.h │ ├── HttpDriver.c │ ├── HttpDriver.h │ ├── HttpDxe.inf │ ├── HttpDxe.uni │ ├── HttpDxeExtra.uni │ ├── HttpImpl.c │ ├── HttpImpl.h │ ├── HttpProto.c │ ├── HttpProto.h │ ├── HttpsSupport.c │ └── HttpsSupport.h ├── HttpUtilitiesDxe │ ├── HttpUtilitiesDxe.c │ ├── HttpUtilitiesDxe.h │ ├── HttpUtilitiesDxe.inf │ ├── HttpUtilitiesDxe.uni │ ├── HttpUtilitiesDxeExtra.uni │ └── HttpUtilitiesProtocol.c ├── IScsiDxe │ ├── ComponentName.c │ ├── IScsiAuthenticationInfo.c │ ├── IScsiCHAP.c │ ├── IScsiCHAP.h │ ├── IScsiConfig.c │ ├── IScsiConfig.h │ ├── IScsiConfigNVDataStruc.h │ ├── IScsiConfigStrings.uni │ ├── IScsiConfigVfr.vfr │ ├── IScsiDhcp.c │ ├── IScsiDhcp.h │ ├── IScsiDhcp6.c │ ├── IScsiDhcp6.h │ ├── IScsiDns.c │ ├── IScsiDns.h │ ├── IScsiDriver.c │ ├── IScsiDriver.h │ ├── IScsiDxe.inf │ ├── IScsiDxe.uni │ ├── IScsiDxeExtra.uni │ ├── IScsiExtScsiPassThru.c │ ├── IScsiIbft.c │ ├── IScsiIbft.h │ ├── IScsiImpl.h │ ├── IScsiInitiatorName.c │ ├── IScsiMisc.c │ ├── IScsiMisc.h │ ├── IScsiProto.c │ └── IScsiProto.h ├── Include │ ├── Guid │ │ ├── HttpBootConfigHii.h │ │ ├── HttpTlsCipherList.h │ │ ├── IScsiConfigHii.h │ │ ├── Ip4Config2Hii.h │ │ ├── Ip4IScsiConfigHii.h │ │ ├── Ip6ConfigHii.h │ │ ├── TlsAuthConfigHii.h │ │ ├── TlsAuthentication.h │ │ ├── VlanConfigHii.h │ │ └── WifiConnectionManagerConfigHii.h │ ├── Library │ │ ├── DpcLib.h │ │ ├── HttpLib.h │ │ ├── IpIoLib.h │ │ ├── NetLib.h │ │ ├── TcpIoLib.h │ │ └── UdpIoLib.h │ └── Protocol │ │ └── Dpc.h ├── Ip4Dxe │ ├── ComponentName.c │ ├── Ip4Common.c │ ├── Ip4Common.h │ ├── Ip4Config2.vfr │ ├── Ip4Config2Impl.c │ ├── Ip4Config2Impl.h │ ├── Ip4Config2Nv.c │ ├── Ip4Config2Nv.h │ ├── Ip4Driver.c │ ├── Ip4Driver.h │ ├── Ip4Dxe.inf │ ├── Ip4Dxe.uni │ ├── Ip4DxeExtra.uni │ ├── Ip4DxeStrings.uni │ ├── Ip4Icmp.c │ ├── Ip4Icmp.h │ ├── Ip4If.c │ ├── Ip4If.h │ ├── Ip4Igmp.c │ ├── Ip4Igmp.h │ ├── Ip4Impl.c │ ├── Ip4Impl.h │ ├── Ip4Input.c │ ├── Ip4Input.h │ ├── Ip4NvData.h │ ├── Ip4Option.c │ ├── Ip4Option.h │ ├── Ip4Output.c │ ├── Ip4Output.h │ ├── Ip4Route.c │ └── Ip4Route.h ├── Ip6Dxe │ ├── ComponentName.c │ ├── Ip6Common.c │ ├── Ip6Common.h │ ├── Ip6Config.vfr │ ├── Ip6ConfigImpl.c │ ├── Ip6ConfigImpl.h │ ├── Ip6ConfigNv.c │ ├── Ip6ConfigNv.h │ ├── Ip6Driver.c │ ├── Ip6Driver.h │ ├── Ip6Dxe.inf │ ├── Ip6Dxe.uni │ ├── Ip6DxeExtra.uni │ ├── Ip6DxeStrings.uni │ ├── Ip6Icmp.c │ ├── Ip6Icmp.h │ ├── Ip6If.c │ ├── Ip6If.h │ ├── Ip6Impl.c │ ├── Ip6Impl.h │ ├── Ip6Input.c │ ├── Ip6Input.h │ ├── Ip6Mld.c │ ├── Ip6Mld.h │ ├── Ip6Nd.c │ ├── Ip6Nd.h │ ├── Ip6NvData.h │ ├── Ip6Option.c │ ├── Ip6Option.h │ ├── Ip6Output.c │ ├── Ip6Output.h │ ├── Ip6Route.c │ └── Ip6Route.h ├── Library │ ├── DxeDpcLib │ │ ├── DpcLib.c │ │ ├── DxeDpcLib.inf │ │ └── DxeDpcLib.uni │ ├── DxeHttpLib │ │ ├── DxeHttpLib.c │ │ ├── DxeHttpLib.h │ │ ├── DxeHttpLib.inf │ │ └── DxeHttpLib.uni │ ├── DxeIpIoLib │ │ ├── DxeIpIoLib.c │ │ ├── DxeIpIoLib.inf │ │ └── DxeIpIoLib.uni │ ├── DxeNetLib │ │ ├── DxeNetLib.c │ │ ├── DxeNetLib.inf │ │ ├── DxeNetLib.uni │ │ └── NetBuffer.c │ ├── DxeTcpIoLib │ │ ├── DxeTcpIoLib.c │ │ ├── DxeTcpIoLib.inf │ │ └── DxeTcpIoLib.uni │ └── DxeUdpIoLib │ │ ├── DxeUdpIoLib.c │ │ ├── DxeUdpIoLib.inf │ │ └── DxeUpdIoLib.uni ├── MnpDxe │ ├── ComponentName.c │ ├── ComponentName.h │ ├── MnpConfig.c │ ├── MnpDriver.c │ ├── MnpDriver.h │ ├── MnpDxe.inf │ ├── MnpDxe.uni │ ├── MnpDxeExtra.uni │ ├── MnpImpl.h │ ├── MnpIo.c │ ├── MnpMain.c │ ├── MnpVlan.c │ └── MnpVlan.h ├── Mtftp4Dxe │ ├── ComponentName.c │ ├── Mtftp4Driver.c │ ├── Mtftp4Driver.h │ ├── Mtftp4Dxe.inf │ ├── Mtftp4Dxe.uni │ ├── Mtftp4DxeExtra.uni │ ├── Mtftp4Impl.c │ ├── Mtftp4Impl.h │ ├── Mtftp4Option.c │ ├── Mtftp4Option.h │ ├── Mtftp4Rrq.c │ ├── Mtftp4Support.c │ ├── Mtftp4Support.h │ └── Mtftp4Wrq.c ├── Mtftp6Dxe │ ├── ComponentName.c │ ├── Mtftp6Driver.c │ ├── Mtftp6Driver.h │ ├── Mtftp6Dxe.inf │ ├── Mtftp6Dxe.uni │ ├── Mtftp6DxeExtra.uni │ ├── Mtftp6Impl.c │ ├── Mtftp6Impl.h │ ├── Mtftp6Option.c │ ├── Mtftp6Option.h │ ├── Mtftp6Rrq.c │ ├── Mtftp6Support.c │ ├── Mtftp6Support.h │ └── Mtftp6Wrq.c ├── Network.dsc.inc ├── Network.fdf.inc ├── NetworkBuildOptions.dsc.inc ├── NetworkComponents.dsc.inc ├── NetworkDefines.dsc.inc ├── NetworkLibs.dsc.inc ├── NetworkPcds.dsc.inc ├── NetworkPkg.ci.yaml ├── NetworkPkg.dec ├── NetworkPkg.dsc ├── NetworkPkg.uni ├── NetworkPkgExtra.uni ├── SnpDxe │ ├── Callback.c │ ├── ComponentName.c │ ├── Get_status.c │ ├── Initialize.c │ ├── Mcast_ip_to_mac.c │ ├── Nvdata.c │ ├── Receive.c │ ├── Receive_filters.c │ ├── Reset.c │ ├── Shutdown.c │ ├── Snp.c │ ├── Snp.h │ ├── SnpDxe.inf │ ├── SnpDxe.uni │ ├── SnpDxeExtra.uni │ ├── Start.c │ ├── Station_address.c │ ├── Statistics.c │ ├── Stop.c │ ├── Transmit.c │ └── WaitForPacket.c ├── TcpDxe │ ├── ComponentName.c │ ├── SockImpl.c │ ├── SockImpl.h │ ├── SockInterface.c │ ├── Socket.h │ ├── TcpDispatcher.c │ ├── TcpDriver.c │ ├── TcpDriver.h │ ├── TcpDxe.inf │ ├── TcpDxe.uni │ ├── TcpDxeExtra.uni │ ├── TcpFunc.h │ ├── TcpInput.c │ ├── TcpIo.c │ ├── TcpMain.c │ ├── TcpMain.h │ ├── TcpMisc.c │ ├── TcpOption.c │ ├── TcpOption.h │ ├── TcpOutput.c │ ├── TcpProto.h │ └── TcpTimer.c ├── TlsAuthConfigDxe │ ├── TlsAuthConfigDxe.c │ ├── TlsAuthConfigDxe.inf │ ├── TlsAuthConfigDxe.uni │ ├── TlsAuthConfigDxeExtra.uni │ ├── TlsAuthConfigDxeStrings.uni │ ├── TlsAuthConfigImpl.c │ ├── TlsAuthConfigImpl.h │ ├── TlsAuthConfigNvData.h │ └── TlsAuthConfigVfr.vfr ├── TlsDxe │ ├── TlsConfigProtocol.c │ ├── TlsDriver.c │ ├── TlsDriver.h │ ├── TlsDxe.inf │ ├── TlsDxe.uni │ ├── TlsDxeExtra.uni │ ├── TlsImpl.c │ ├── TlsImpl.h │ └── TlsProtocol.c ├── Udp4Dxe │ ├── ComponentName.c │ ├── Udp4Driver.c │ ├── Udp4Driver.h │ ├── Udp4Dxe.inf │ ├── Udp4Dxe.uni │ ├── Udp4DxeExtra.uni │ ├── Udp4Impl.c │ ├── Udp4Impl.h │ └── Udp4Main.c ├── Udp6Dxe │ ├── ComponentName.c │ ├── Udp6Driver.c │ ├── Udp6Driver.h │ ├── Udp6Dxe.inf │ ├── Udp6Dxe.uni │ ├── Udp6DxeExtra.uni │ ├── Udp6Impl.c │ ├── Udp6Impl.h │ └── Udp6Main.c ├── UefiPxeBcDxe │ ├── ComponentName.c │ ├── PxeBcBoot.c │ ├── PxeBcBoot.h │ ├── PxeBcDhcp4.c │ ├── PxeBcDhcp4.h │ ├── PxeBcDhcp6.c │ ├── PxeBcDhcp6.h │ ├── PxeBcDriver.c │ ├── PxeBcDriver.h │ ├── PxeBcImpl.c │ ├── PxeBcImpl.h │ ├── PxeBcMtftp.c │ ├── PxeBcMtftp.h │ ├── PxeBcSupport.c │ ├── PxeBcSupport.h │ ├── UefiPxeBcDxe.inf │ ├── UefiPxeBcDxe.uni │ └── UefiPxeBcDxeExtra.uni ├── VlanConfigDxe │ ├── ComponentName.c │ ├── VlanConfig.vfr │ ├── VlanConfigDriver.c │ ├── VlanConfigDxe.inf │ ├── VlanConfigDxe.uni │ ├── VlanConfigDxeExtra.uni │ ├── VlanConfigImpl.c │ ├── VlanConfigImpl.h │ ├── VlanConfigNvData.h │ └── VlanConfigStrings.uni └── WifiConnectionManagerDxe │ ├── EapContext.h │ ├── WifiConnectionManagerDxe.inf │ ├── WifiConnectionManagerDxe.vfr │ ├── WifiConnectionManagerDxeStrings.uni │ ├── WifiConnectionMgrComponentName.c │ ├── WifiConnectionMgrComponentName.h │ ├── WifiConnectionMgrConfig.h │ ├── WifiConnectionMgrConfigHii.h │ ├── WifiConnectionMgrConfigNVDataStruct.h │ ├── WifiConnectionMgrDriver.c │ ├── WifiConnectionMgrDriverBinding.h │ ├── WifiConnectionMgrDxe.h │ ├── WifiConnectionMgrFileUtil.c │ ├── WifiConnectionMgrFileUtil.h │ ├── WifiConnectionMgrHiiConfigAccess.c │ ├── WifiConnectionMgrHiiConfigAccess.h │ ├── WifiConnectionMgrImpl.c │ ├── WifiConnectionMgrImpl.h │ ├── WifiConnectionMgrMisc.c │ └── WifiConnectionMgrMisc.h ├── README.md ├── ShellPkg ├── Application │ ├── AcpiViewApp │ │ ├── AcpiViewApp.c │ │ ├── AcpiViewApp.inf │ │ └── AcpiViewApp.uni │ ├── Shell │ │ ├── ConsoleLogger.c │ │ ├── ConsoleLogger.h │ │ ├── ConsoleWrappers.c │ │ ├── ConsoleWrappers.h │ │ ├── FileHandleInternal.h │ │ ├── FileHandleWrappers.c │ │ ├── FileHandleWrappers.h │ │ ├── Shell.c │ │ ├── Shell.h │ │ ├── Shell.inf │ │ ├── Shell.uni │ │ ├── ShellEnvVar.c │ │ ├── ShellEnvVar.h │ │ ├── ShellManParser.c │ │ ├── ShellManParser.h │ │ ├── ShellParametersProtocol.c │ │ ├── ShellParametersProtocol.h │ │ ├── ShellProtocol.c │ │ └── ShellProtocol.h │ ├── ShellCTestApp │ │ ├── README.txt │ │ ├── ShellCTestApp.c │ │ ├── ShellCTestApp.inf │ │ ├── TestArgv.log │ │ └── TestArgv.nsh │ ├── ShellExecTestApp │ │ ├── SA.c │ │ └── SA.inf │ └── ShellSortTestApp │ │ ├── ShellSortTestApp.c │ │ └── ShellSortTestApp.inf ├── DynamicCommand │ ├── DpDynamicCommand │ │ ├── Dp.c │ │ ├── Dp.h │ │ ├── Dp.uni │ │ ├── DpApp.c │ │ ├── DpApp.inf │ │ ├── DpDynamicCommand.c │ │ ├── DpDynamicCommand.inf │ │ ├── DpInternal.h │ │ ├── DpTrace.c │ │ ├── DpUtilities.c │ │ ├── Literals.c │ │ └── Literals.h │ ├── HttpDynamicCommand │ │ ├── Http.c │ │ ├── Http.h │ │ ├── Http.uni │ │ ├── HttpApp.c │ │ ├── HttpApp.inf │ │ ├── HttpDynamicCommand.c │ │ └── HttpDynamicCommand.inf │ └── TftpDynamicCommand │ │ ├── Tftp.c │ │ ├── Tftp.h │ │ ├── Tftp.uni │ │ ├── TftpApp.c │ │ ├── TftpApp.inf │ │ ├── TftpDynamicCommand.c │ │ └── TftpDynamicCommand.inf ├── Include │ ├── Guid │ │ ├── ShellAliasGuid.h │ │ ├── ShellEnvironment2Ext.h │ │ ├── ShellLibHiiGuid.h │ │ ├── ShellMapGuid.h │ │ ├── ShellPkgTokenSpace.h │ │ └── ShellVariableGuid.h │ ├── Library │ │ ├── AcpiViewCommandLib.h │ │ ├── BcfgCommandLib.h │ │ ├── HandleParsingLib.h │ │ ├── ShellCEntryLib.h │ │ ├── ShellCommandLib.h │ │ └── ShellLib.h │ └── Protocol │ │ ├── EfiShellEnvironment2.h │ │ └── EfiShellInterface.h ├── Library │ ├── UefiHandleParsingLib │ │ ├── UefiHandleParsingLib.c │ │ ├── UefiHandleParsingLib.h │ │ ├── UefiHandleParsingLib.inf │ │ └── UefiHandleParsingLib.uni │ ├── UefiShellAcpiViewCommandLib │ │ ├── AcpiParser.c │ │ ├── AcpiParser.h │ │ ├── AcpiTableParser.c │ │ ├── AcpiTableParser.h │ │ ├── AcpiView.c │ │ ├── AcpiView.h │ │ ├── AcpiViewConfig.c │ │ ├── AcpiViewConfig.h │ │ ├── Arm │ │ │ ├── SbbrValidator.c │ │ │ └── SbbrValidator.h │ │ ├── Parsers │ │ │ ├── Bgrt │ │ │ │ └── BgrtParser.c │ │ │ ├── Dbg2 │ │ │ │ └── Dbg2Parser.c │ │ │ ├── Dsdt │ │ │ │ └── DsdtParser.c │ │ │ ├── Facs │ │ │ │ └── FacsParser.c │ │ │ ├── Fadt │ │ │ │ └── FadtParser.c │ │ │ ├── Gtdt │ │ │ │ └── GtdtParser.c │ │ │ ├── Iort │ │ │ │ └── IortParser.c │ │ │ ├── Madt │ │ │ │ ├── MadtParser.c │ │ │ │ └── MadtParser.h │ │ │ ├── Mcfg │ │ │ │ └── McfgParser.c │ │ │ ├── Pptt │ │ │ │ ├── PpttParser.c │ │ │ │ └── PpttParser.h │ │ │ ├── Rsdp │ │ │ │ └── RsdpParser.c │ │ │ ├── Slit │ │ │ │ └── SlitParser.c │ │ │ ├── Spcr │ │ │ │ └── SpcrParser.c │ │ │ ├── Srat │ │ │ │ └── SratParser.c │ │ │ ├── Ssdt │ │ │ │ └── SsdtParser.c │ │ │ └── Xsdt │ │ │ │ └── XsdtParser.c │ │ ├── UefiShellAcpiViewCommandLib.c │ │ ├── UefiShellAcpiViewCommandLib.inf │ │ └── UefiShellAcpiViewCommandLib.uni │ ├── UefiShellBcfgCommandLib │ │ ├── UefiShellBcfgCommandLib.c │ │ ├── UefiShellBcfgCommandLib.inf │ │ └── UefiShellBcfgCommandLib.uni │ ├── UefiShellCEntryLib │ │ ├── UefiShellCEntryLib.c │ │ └── UefiShellCEntryLib.inf │ ├── UefiShellCommandLib │ │ ├── ConsistMapping.c │ │ ├── UefiShellCommandLib.c │ │ ├── UefiShellCommandLib.h │ │ └── UefiShellCommandLib.inf │ ├── UefiShellDebug1CommandsLib │ │ ├── Comp.c │ │ ├── Compress.c │ │ ├── Compress.h │ │ ├── Dblk.c │ │ ├── Dmem.c │ │ ├── DmpStore.c │ │ ├── Edit │ │ │ ├── Edit.c │ │ │ ├── FileBuffer.c │ │ │ ├── FileBuffer.h │ │ │ ├── MainTextEditor.c │ │ │ ├── MainTextEditor.h │ │ │ ├── Misc.c │ │ │ ├── Misc.h │ │ │ ├── TextEditStrings.uni │ │ │ ├── TextEditor.h │ │ │ └── TextEditorTypes.h │ │ ├── EditInputBar.c │ │ ├── EditInputBar.h │ │ ├── EditMenuBar.c │ │ ├── EditMenuBar.h │ │ ├── EditStatusBar.c │ │ ├── EditStatusBar.h │ │ ├── EditTitleBar.c │ │ ├── EditTitleBar.h │ │ ├── EfiCompress.c │ │ ├── EfiDecompress.c │ │ ├── HexEdit │ │ │ ├── BufferImage.c │ │ │ ├── BufferImage.h │ │ │ ├── Clipboard.c │ │ │ ├── Clipboard.h │ │ │ ├── DiskImage.c │ │ │ ├── DiskImage.h │ │ │ ├── FileImage.c │ │ │ ├── FileImage.h │ │ │ ├── HexEdit.c │ │ │ ├── HexEditor.h │ │ │ ├── HexEditorTypes.h │ │ │ ├── HexeditStrings.uni │ │ │ ├── MainHexEditor.c │ │ │ ├── MainHexEditor.h │ │ │ ├── MemImage.c │ │ │ ├── MemImage.h │ │ │ ├── Misc.c │ │ │ └── Misc.h │ │ ├── LoadPciRom.c │ │ ├── MemMap.c │ │ ├── Mm.c │ │ ├── Mode.c │ │ ├── Pci.c │ │ ├── Pci.h │ │ ├── SerMode.c │ │ ├── SetSize.c │ │ ├── SetVar.c │ │ ├── SmbiosView │ │ │ ├── EventLogInfo.c │ │ │ ├── EventLogInfo.h │ │ │ ├── LibSmbiosView.c │ │ │ ├── LibSmbiosView.h │ │ │ ├── PrintInfo.c │ │ │ ├── PrintInfo.h │ │ │ ├── QueryTable.c │ │ │ ├── QueryTable.h │ │ │ ├── SmbiosView.c │ │ │ ├── SmbiosView.h │ │ │ └── SmbiosViewStrings.uni │ │ ├── UefiShellDebug1CommandsLib.c │ │ ├── UefiShellDebug1CommandsLib.h │ │ ├── UefiShellDebug1CommandsLib.inf │ │ └── UefiShellDebug1CommandsLib.uni │ ├── UefiShellDriver1CommandsLib │ │ ├── Connect.c │ │ ├── DevTree.c │ │ ├── Devices.c │ │ ├── Dh.c │ │ ├── Disconnect.c │ │ ├── Drivers.c │ │ ├── DrvCfg.c │ │ ├── DrvDiag.c │ │ ├── OpenInfo.c │ │ ├── Reconnect.c │ │ ├── UefiShellDriver1CommandsLib.c │ │ ├── UefiShellDriver1CommandsLib.h │ │ ├── UefiShellDriver1CommandsLib.inf │ │ ├── UefiShellDriver1CommandsLib.uni │ │ └── Unload.c │ ├── UefiShellInstall1CommandsLib │ │ ├── UefiShellInstall1CommandsLib.c │ │ └── UefiShellInstall1CommandsLib.inf │ ├── UefiShellLevel1CommandsLib │ │ ├── Exit.c │ │ ├── For.c │ │ ├── Goto.c │ │ ├── If.c │ │ ├── Shift.c │ │ ├── Stall.c │ │ ├── UefiShellLevel1CommandsLib.c │ │ ├── UefiShellLevel1CommandsLib.h │ │ ├── UefiShellLevel1CommandsLib.inf │ │ └── UefiShellLevel1CommandsLib.uni │ ├── UefiShellLevel2CommandsLib │ │ ├── Attrib.c │ │ ├── Cd.c │ │ ├── Cp.c │ │ ├── Load.c │ │ ├── Ls.c │ │ ├── Map.c │ │ ├── MkDir.c │ │ ├── Mv.c │ │ ├── Parse.c │ │ ├── Reset.c │ │ ├── Rm.c │ │ ├── Set.c │ │ ├── TimeDate.c │ │ ├── UefiShellLevel2CommandsLib.c │ │ ├── UefiShellLevel2CommandsLib.h │ │ ├── UefiShellLevel2CommandsLib.inf │ │ ├── UefiShellLevel2CommandsLib.uni │ │ └── Vol.c │ ├── UefiShellLevel3CommandsLib │ │ ├── Alias.c │ │ ├── Cls.c │ │ ├── Echo.c │ │ ├── GetMtc.c │ │ ├── Help.c │ │ ├── Pause.c │ │ ├── Touch.c │ │ ├── Type.c │ │ ├── UefiShellLevel3CommandsLib.c │ │ ├── UefiShellLevel3CommandsLib.h │ │ ├── UefiShellLevel3CommandsLib.inf │ │ ├── UefiShellLevel3CommandsLib.uni │ │ └── Ver.c │ ├── UefiShellLib │ │ ├── UefiShellLib.c │ │ ├── UefiShellLib.h │ │ └── UefiShellLib.inf │ ├── UefiShellNetwork1CommandsLib │ │ ├── Ifconfig.c │ │ ├── Ping.c │ │ ├── UefiShellNetwork1CommandsLib.c │ │ ├── UefiShellNetwork1CommandsLib.h │ │ ├── UefiShellNetwork1CommandsLib.inf │ │ └── UefiShellNetwork1CommandsLib.uni │ └── UefiShellNetwork2CommandsLib │ │ ├── Ifconfig6.c │ │ ├── Ping6.c │ │ ├── UefiShellNetwork2CommandsLib.c │ │ ├── UefiShellNetwork2CommandsLib.h │ │ ├── UefiShellNetwork2CommandsLib.inf │ │ └── UefiShellNetwork2CommandsLib.uni ├── ShellPkg.ci.yaml ├── ShellPkg.dec └── ShellPkg.dsc ├── edksetup.bat └── edksetup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/.gitignore -------------------------------------------------------------------------------- /BaseTools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/.gitignore -------------------------------------------------------------------------------- /BaseTools/Bin/CYGWIN_NT-5.1-i686/Ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Bin/CYGWIN_NT-5.1-i686/Ecc -------------------------------------------------------------------------------- /BaseTools/Bin/CYGWIN_NT-5.1-i686/Trim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Bin/CYGWIN_NT-5.1-i686/Trim -------------------------------------------------------------------------------- /BaseTools/Bin/iasl_ext_dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Bin/iasl_ext_dep.yaml -------------------------------------------------------------------------------- /BaseTools/Bin/nasm_ext_dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Bin/nasm_ext_dep.yaml -------------------------------------------------------------------------------- /BaseTools/BinWrappers/PosixLike/BPDG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/BinWrappers/PosixLike/BPDG -------------------------------------------------------------------------------- /BaseTools/BinWrappers/PosixLike/Ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/BinWrappers/PosixLike/Ecc -------------------------------------------------------------------------------- /BaseTools/BinWrappers/PosixLike/GenFv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/BinWrappers/PosixLike/GenFv -------------------------------------------------------------------------------- /BaseTools/BinWrappers/PosixLike/GenFw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/BinWrappers/PosixLike/GenFw -------------------------------------------------------------------------------- /BaseTools/BinWrappers/PosixLike/Split: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/BinWrappers/PosixLike/Split -------------------------------------------------------------------------------- /BaseTools/BinWrappers/PosixLike/Trim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/BinWrappers/PosixLike/Trim -------------------------------------------------------------------------------- /BaseTools/BinWrappers/PosixLike/UPT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/BinWrappers/PosixLike/UPT -------------------------------------------------------------------------------- /BaseTools/BinWrappers/PosixLike/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/BinWrappers/PosixLike/build -------------------------------------------------------------------------------- /BaseTools/BuildEnv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/BuildEnv -------------------------------------------------------------------------------- /BaseTools/Conf/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Conf/ReadMe.txt -------------------------------------------------------------------------------- /BaseTools/Conf/build_rule.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Conf/build_rule.template -------------------------------------------------------------------------------- /BaseTools/Conf/diff.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Conf/diff.order -------------------------------------------------------------------------------- /BaseTools/Conf/gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Conf/gitattributes -------------------------------------------------------------------------------- /BaseTools/Conf/target.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Conf/target.template -------------------------------------------------------------------------------- /BaseTools/Conf/tools_def.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Conf/tools_def.template -------------------------------------------------------------------------------- /BaseTools/Edk2ToolsBuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Edk2ToolsBuild.py -------------------------------------------------------------------------------- /BaseTools/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Makefile -------------------------------------------------------------------------------- /BaseTools/ReadMe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/ReadMe.rst -------------------------------------------------------------------------------- /BaseTools/Scripts/BinToPcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Scripts/BinToPcd.py -------------------------------------------------------------------------------- /BaseTools/Scripts/ConvertUni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Scripts/ConvertUni.py -------------------------------------------------------------------------------- /BaseTools/Scripts/FormatDosFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Scripts/FormatDosFiles.py -------------------------------------------------------------------------------- /BaseTools/Scripts/GccBase.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Scripts/GccBase.lds -------------------------------------------------------------------------------- /BaseTools/Scripts/GetMaintainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Scripts/GetMaintainer.py -------------------------------------------------------------------------------- /BaseTools/Scripts/GetUtcDateTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Scripts/GetUtcDateTime.py -------------------------------------------------------------------------------- /BaseTools/Scripts/PatchCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Scripts/PatchCheck.py -------------------------------------------------------------------------------- /BaseTools/Scripts/RunMakefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Scripts/RunMakefile.py -------------------------------------------------------------------------------- /BaseTools/Scripts/Rvct-Align32.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Scripts/Rvct-Align32.sct -------------------------------------------------------------------------------- /BaseTools/Scripts/Rvct-Align4K.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Scripts/Rvct-Align4K.sct -------------------------------------------------------------------------------- /BaseTools/Scripts/SetVisualStudio.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Scripts/SetVisualStudio.bat -------------------------------------------------------------------------------- /BaseTools/Scripts/SetupGit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Scripts/SetupGit.py -------------------------------------------------------------------------------- /BaseTools/Scripts/ShowEnvironment.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Scripts/ShowEnvironment.bat -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/.gitattributes: -------------------------------------------------------------------------------- 1 | tests/testdata/* binary 2 | -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/python/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/scripts/.configure-custom.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/empty.compressed: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/empty.compressed.00: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/empty.compressed.08: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/empty.compressed.09: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/empty.compressed.10: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/empty.compressed.11: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/empty.compressed.12: -------------------------------------------------------------------------------- 1 | ; -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/empty.compressed.13: -------------------------------------------------------------------------------- 1 | = -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/empty.compressed.14: -------------------------------------------------------------------------------- 1 | ? -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/empty.compressed.15: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/quickfox: -------------------------------------------------------------------------------- 1 | The quick brown fox jumps over the lazy dog -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/x: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/x.compressed.00: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/x.compressed.01: -------------------------------------------------------------------------------- 1 | ,XX -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/x.compressed.02: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /BaseTools/Source/C/BrotliCompress/brotli/tests/testdata/xyzzy: -------------------------------------------------------------------------------- 1 | Xyzzy -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/CommonLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/CommonLib.c -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/CommonLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/CommonLib.h -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/Compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/Compress.h -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/Crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/Crc32.c -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/Crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/Crc32.h -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/FvLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/FvLib.c -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/FvLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/FvLib.h -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/MyAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/MyAlloc.c -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/MyAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/MyAlloc.h -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/OsPath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/OsPath.c -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/OsPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/OsPath.h -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/ParseInf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/ParseInf.c -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/ParseInf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/ParseInf.h -------------------------------------------------------------------------------- /BaseTools/Source/C/Common/PeCoffLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Common/PeCoffLib.h -------------------------------------------------------------------------------- /BaseTools/Source/C/EfiRom/EfiRom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/EfiRom/EfiRom.c -------------------------------------------------------------------------------- /BaseTools/Source/C/EfiRom/EfiRom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/EfiRom/EfiRom.h -------------------------------------------------------------------------------- /BaseTools/Source/C/EfiRom/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/EfiRom/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Source/C/EfiRom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/EfiRom/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/C/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Source/C/GenCrc32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenCrc32/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFfs/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenFfs/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFfs/GenFfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenFfs/GenFfs.c -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenFfs/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFv/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenFv/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFv/GenFv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenFv/GenFv.c -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenFv/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFw/ElfConvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenFw/ElfConvert.c -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFw/ElfConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenFw/ElfConvert.h -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFw/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenFw/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFw/GenFw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenFw/GenFw.c -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFw/GenFw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenFw/GenFw.h -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenFw/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFw/elf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenFw/elf32.h -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFw/elf64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenFw/elf64.h -------------------------------------------------------------------------------- /BaseTools/Source/C/GenFw/elf_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenFw/elf_common.h -------------------------------------------------------------------------------- /BaseTools/Source/C/GenSec/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenSec/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Source/C/GenSec/GenSec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenSec/GenSec.c -------------------------------------------------------------------------------- /BaseTools/Source/C/GenSec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/GenSec/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/C/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/C/Makefiles/ms.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Makefiles/ms.app -------------------------------------------------------------------------------- /BaseTools/Source/C/Makefiles/ms.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Makefiles/ms.lib -------------------------------------------------------------------------------- /BaseTools/Source/C/Makefiles/ms.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Makefiles/ms.rule -------------------------------------------------------------------------------- /BaseTools/Source/C/Split/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Split/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Source/C/Split/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Split/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/C/Split/Split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/Split/Split.c -------------------------------------------------------------------------------- /BaseTools/Source/C/VfrCompile/Pccts/h/config.h: -------------------------------------------------------------------------------- 1 | #include "pcctscfg.h" 2 | -------------------------------------------------------------------------------- /BaseTools/Source/C/VolInfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/VolInfo/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/C/VolInfo/VolInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/VolInfo/VolInfo.c -------------------------------------------------------------------------------- /BaseTools/Source/C/VolInfo/VolInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/C/VolInfo/VolInfo.h -------------------------------------------------------------------------------- /BaseTools/Source/Python/BPDG/BPDG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/BPDG/BPDG.py -------------------------------------------------------------------------------- /BaseTools/Source/Python/Ecc/C.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/Ecc/C.g -------------------------------------------------------------------------------- /BaseTools/Source/Python/Ecc/CParser3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BaseTools/Source/Python/Ecc/CParser4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BaseTools/Source/Python/Ecc/Check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/Ecc/Check.py -------------------------------------------------------------------------------- /BaseTools/Source/Python/Ecc/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/Ecc/c.py -------------------------------------------------------------------------------- /BaseTools/Source/Python/Eot/CParser3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BaseTools/Source/Python/Eot/CParser4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BaseTools/Source/Python/Eot/Parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/Eot/Parser.py -------------------------------------------------------------------------------- /BaseTools/Source/Python/Eot/Report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/Eot/Report.py -------------------------------------------------------------------------------- /BaseTools/Source/Python/Eot/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/Eot/c.py -------------------------------------------------------------------------------- /BaseTools/Source/Python/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Source/Python/GenFds/Fd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/GenFds/Fd.py -------------------------------------------------------------------------------- /BaseTools/Source/Python/GenFds/Ffs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/GenFds/Ffs.py -------------------------------------------------------------------------------- /BaseTools/Source/Python/GenFds/Fv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/GenFds/Fv.py -------------------------------------------------------------------------------- /BaseTools/Source/Python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/Python/Trim/Trim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/Trim/Trim.py -------------------------------------------------------------------------------- /BaseTools/Source/Python/UPT/MkPkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/UPT/MkPkg.py -------------------------------------------------------------------------------- /BaseTools/Source/Python/UPT/RmPkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/UPT/RmPkg.py -------------------------------------------------------------------------------- /BaseTools/Source/Python/UPT/UPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Source/Python/UPT/UPT.py -------------------------------------------------------------------------------- /BaseTools/Tests/CToolsTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Tests/CToolsTests.py -------------------------------------------------------------------------------- /BaseTools/Tests/CheckPythonSyntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Tests/CheckPythonSyntax.py -------------------------------------------------------------------------------- /BaseTools/Tests/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Tests/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Tests/PythonTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Tests/PythonTest.py -------------------------------------------------------------------------------- /BaseTools/Tests/PythonToolsTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Tests/PythonToolsTests.py -------------------------------------------------------------------------------- /BaseTools/Tests/RunTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Tests/RunTests.py -------------------------------------------------------------------------------- /BaseTools/Tests/TestTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Tests/TestTools.py -------------------------------------------------------------------------------- /BaseTools/Tests/TianoCompress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/Tests/TianoCompress.py -------------------------------------------------------------------------------- /BaseTools/basetools_path_env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/basetools_path_env.yaml -------------------------------------------------------------------------------- /BaseTools/get_vsvars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/get_vsvars.bat -------------------------------------------------------------------------------- /BaseTools/set_vsprefix_envs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/set_vsprefix_envs.bat -------------------------------------------------------------------------------- /BaseTools/toolsetup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/BaseTools/toolsetup.bat -------------------------------------------------------------------------------- /Conf/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IntelUndiPkg/AdapterInformation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/AdapterInformation.c -------------------------------------------------------------------------------- /IntelUndiPkg/AdapterInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/AdapterInformation.h -------------------------------------------------------------------------------- /IntelUndiPkg/Brand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/Brand.c -------------------------------------------------------------------------------- /IntelUndiPkg/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/ComponentName.c -------------------------------------------------------------------------------- /IntelUndiPkg/ComponentName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/ComponentName.h -------------------------------------------------------------------------------- /IntelUndiPkg/Decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/Decode.c -------------------------------------------------------------------------------- /IntelUndiPkg/Decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/Decode.h -------------------------------------------------------------------------------- /IntelUndiPkg/DeviceSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/DeviceSupport.c -------------------------------------------------------------------------------- /IntelUndiPkg/DeviceSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/DeviceSupport.h -------------------------------------------------------------------------------- /IntelUndiPkg/Dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/Dma.c -------------------------------------------------------------------------------- /IntelUndiPkg/Dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/Dma.h -------------------------------------------------------------------------------- /IntelUndiPkg/DriverConfiguration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/DriverConfiguration.c -------------------------------------------------------------------------------- /IntelUndiPkg/DriverConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/DriverConfiguration.h -------------------------------------------------------------------------------- /IntelUndiPkg/Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/Init.c -------------------------------------------------------------------------------- /IntelUndiPkg/Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/Init.h -------------------------------------------------------------------------------- /IntelUndiPkg/IntelGbe/intelgbe_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/IntelGbe/intelgbe_api.c -------------------------------------------------------------------------------- /IntelUndiPkg/IntelGbe/intelgbe_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/IntelGbe/intelgbe_api.h -------------------------------------------------------------------------------- /IntelUndiPkg/IntelGbe/intelgbe_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/IntelGbe/intelgbe_phy.c -------------------------------------------------------------------------------- /IntelUndiPkg/IntelGbe/mii_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/IntelGbe/mii_regs.h -------------------------------------------------------------------------------- /IntelUndiPkg/IntelGigUndiDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/IntelGigUndiDxe.inf -------------------------------------------------------------------------------- /IntelUndiPkg/IntelGigUndiPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/IntelGigUndiPkg.dsc -------------------------------------------------------------------------------- /IntelUndiPkg/Intelgbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/Intelgbe.c -------------------------------------------------------------------------------- /IntelUndiPkg/Intelgbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/Intelgbe.h -------------------------------------------------------------------------------- /IntelUndiPkg/Intelgbe_osdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/Intelgbe_osdep.c -------------------------------------------------------------------------------- /IntelUndiPkg/Intelgbe_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/Intelgbe_osdep.h -------------------------------------------------------------------------------- /IntelUndiPkg/StartStop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/StartStop.c -------------------------------------------------------------------------------- /IntelUndiPkg/StartStop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/StartStop.h -------------------------------------------------------------------------------- /IntelUndiPkg/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/IntelUndiPkg/Version.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/LICENSE -------------------------------------------------------------------------------- /MdeModulePkg/Application/UiApp/Ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Application/UiApp/Ui.h -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Ata/AhciPei/DmaMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Ata/AhciPei/DmaMem.c -------------------------------------------------------------------------------- /MdeModulePkg/Bus/I2c/I2cDxe/I2cBus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/I2c/I2cDxe/I2cBus.c -------------------------------------------------------------------------------- /MdeModulePkg/Bus/I2c/I2cDxe/I2cDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/I2c/I2cDxe/I2cDxe.c -------------------------------------------------------------------------------- /MdeModulePkg/Bus/I2c/I2cDxe/I2cDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/I2c/I2cDxe/I2cDxe.h -------------------------------------------------------------------------------- /MdeModulePkg/Bus/I2c/I2cDxe/I2cHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/I2c/I2cDxe/I2cHost.c -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Pci/EhciDxe/Ehci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Pci/EhciDxe/Ehci.c -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Pci/EhciDxe/Ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Pci/EhciDxe/Ehci.h -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Pci/EhciPei/DmaMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Pci/EhciPei/DmaMem.c -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Pci/UhciDxe/Uhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Pci/UhciDxe/Uhci.c -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Pci/UhciDxe/Uhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Pci/UhciDxe/Uhci.h -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Pci/UhciPei/DmaMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Pci/UhciPei/DmaMem.c -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Pci/XhciDxe/Xhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Pci/XhciDxe/Xhci.c -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Pci/XhciDxe/Xhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Pci/XhciDxe/Xhci.h -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Pci/XhciPei/DmaMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Pci/XhciPei/DmaMem.c -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDxe.c -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDxe.h -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.c -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Sd/SdDxe/SdBlockIo.h -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Sd/SdDxe/SdDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Sd/SdDxe/SdDxe.c -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Sd/SdDxe/SdDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Sd/SdDxe/SdDxe.h -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Sd/SdDxe/SdDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Sd/SdDxe/SdDxe.inf -------------------------------------------------------------------------------- /MdeModulePkg/Bus/Sd/SdDxe/SdDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Bus/Sd/SdDxe/SdDxe.uni -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/DxeCore.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/DxeCore.uni -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/DxeMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/DxeMain.h -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/DxeMain.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/DxeMain.inf -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Event/Event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Event/Event.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Event/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Event/Event.h -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Event/Timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Event/Timer.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Event/Tpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Event/Tpl.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/FwVol/Ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/FwVol/Ffs.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/FwVol/FwVol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/FwVol/FwVol.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Gcd/Gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Gcd/Gcd.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Gcd/Gcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Gcd/Gcd.h -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Hand/Handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Hand/Handle.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Hand/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Hand/Handle.h -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Hand/Locate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Hand/Locate.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Hand/Notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Hand/Notify.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Image/Image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Image/Image.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Image/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Image/Image.h -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Mem/HeapGuard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Mem/HeapGuard.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Mem/HeapGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Mem/HeapGuard.h -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Mem/Imem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Mem/Imem.h -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Mem/MemData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Mem/MemData.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Mem/Page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Mem/Page.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Mem/Pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Mem/Pool.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/Misc/Stall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Dxe/Misc/Stall.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/DxeIplPeim/DxeIpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/DxeIplPeim/DxeIpl.h -------------------------------------------------------------------------------- /MdeModulePkg/Core/Pei/CpuIo/CpuIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Pei/CpuIo/CpuIo.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Pei/FwVol/FwVol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Pei/FwVol/FwVol.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Pei/FwVol/FwVol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Pei/FwVol/FwVol.h -------------------------------------------------------------------------------- /MdeModulePkg/Core/Pei/Hob/Hob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Pei/Hob/Hob.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Pei/Image/Image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Pei/Image/Image.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Pei/PeiCore.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Pei/PeiCore.uni -------------------------------------------------------------------------------- /MdeModulePkg/Core/Pei/PeiMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Pei/PeiMain.h -------------------------------------------------------------------------------- /MdeModulePkg/Core/Pei/PeiMain.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Pei/PeiMain.inf -------------------------------------------------------------------------------- /MdeModulePkg/Core/Pei/Ppi/Ppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Pei/Ppi/Ppi.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/Pei/Reset/Reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/Pei/Reset/Reset.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/PiSmmCore/Handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/PiSmmCore/Handle.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/PiSmmCore/Locate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/PiSmmCore/Locate.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/PiSmmCore/Notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/PiSmmCore/Notify.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/PiSmmCore/Page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/PiSmmCore/Page.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/PiSmmCore/Pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/PiSmmCore/Pool.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/PiSmmCore/Smi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/PiSmmCore/Smi.c -------------------------------------------------------------------------------- /MdeModulePkg/Core/RuntimeDxe/Crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Core/RuntimeDxe/Crc32.c -------------------------------------------------------------------------------- /MdeModulePkg/Include/Guid/DebugMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Include/Guid/DebugMask.h -------------------------------------------------------------------------------- /MdeModulePkg/Include/Guid/MtcVendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Include/Guid/MtcVendor.h -------------------------------------------------------------------------------- /MdeModulePkg/Include/Guid/TtyTerm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Include/Guid/TtyTerm.h -------------------------------------------------------------------------------- /MdeModulePkg/Include/Guid/ZeroGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Include/Guid/ZeroGuid.h -------------------------------------------------------------------------------- /MdeModulePkg/Include/Library/HiiLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Include/Library/HiiLib.h -------------------------------------------------------------------------------- /MdeModulePkg/Include/Ppi/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Include/Ppi/Debug.h -------------------------------------------------------------------------------- /MdeModulePkg/Include/Ppi/IoMmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Include/Ppi/IoMmu.h -------------------------------------------------------------------------------- /MdeModulePkg/Include/Ppi/IpmiPpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Include/Ppi/IpmiPpi.h -------------------------------------------------------------------------------- /MdeModulePkg/Include/Ppi/SmmAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Include/Ppi/SmmAccess.h -------------------------------------------------------------------------------- /MdeModulePkg/Include/Ppi/SmmControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Include/Ppi/SmmControl.h -------------------------------------------------------------------------------- /MdeModulePkg/Include/Ppi/UsbIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Include/Ppi/UsbIo.h -------------------------------------------------------------------------------- /MdeModulePkg/Include/Protocol/IoMmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Include/Protocol/IoMmu.h -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/.gitattributes: -------------------------------------------------------------------------------- 1 | tests/testdata/* binary 2 | -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/python/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/scripts/.configure-custom.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/empty.compressed: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/empty.compressed.00: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/empty.compressed.08: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/empty.compressed.09: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/empty.compressed.10: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/empty.compressed.11: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/empty.compressed.12: -------------------------------------------------------------------------------- 1 | ; -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/empty.compressed.13: -------------------------------------------------------------------------------- 1 | = -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/empty.compressed.14: -------------------------------------------------------------------------------- 1 | ? -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/empty.compressed.15: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/quickfox: -------------------------------------------------------------------------------- 1 | The quick brown fox jumps over the lazy dog -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/x: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/x.compressed.00: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/x.compressed.01: -------------------------------------------------------------------------------- 1 | ,XX -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/x.compressed.02: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /MdeModulePkg/Library/BrotliCustomDecompressLib/brotli/tests/testdata/xyzzy: -------------------------------------------------------------------------------- 1 | Xyzzy -------------------------------------------------------------------------------- /MdeModulePkg/Logo/Logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Logo/Logo.bmp -------------------------------------------------------------------------------- /MdeModulePkg/Logo/Logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Logo/Logo.c -------------------------------------------------------------------------------- /MdeModulePkg/Logo/Logo.idf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Logo/Logo.idf -------------------------------------------------------------------------------- /MdeModulePkg/Logo/Logo.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Logo/Logo.inf -------------------------------------------------------------------------------- /MdeModulePkg/Logo/Logo.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Logo/Logo.uni -------------------------------------------------------------------------------- /MdeModulePkg/Logo/LogoDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Logo/LogoDxe.inf -------------------------------------------------------------------------------- /MdeModulePkg/Logo/LogoDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Logo/LogoDxe.uni -------------------------------------------------------------------------------- /MdeModulePkg/Logo/LogoDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Logo/LogoDxeExtra.uni -------------------------------------------------------------------------------- /MdeModulePkg/Logo/LogoExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Logo/LogoExtra.uni -------------------------------------------------------------------------------- /MdeModulePkg/MdeModulePkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/MdeModulePkg.ci.yaml -------------------------------------------------------------------------------- /MdeModulePkg/MdeModulePkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/MdeModulePkg.dec -------------------------------------------------------------------------------- /MdeModulePkg/MdeModulePkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/MdeModulePkg.dsc -------------------------------------------------------------------------------- /MdeModulePkg/MdeModulePkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/MdeModulePkg.uni -------------------------------------------------------------------------------- /MdeModulePkg/MdeModulePkgExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/MdeModulePkgExtra.uni -------------------------------------------------------------------------------- /MdeModulePkg/Universal/BdsDxe/Bds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Universal/BdsDxe/Bds.h -------------------------------------------------------------------------------- /MdeModulePkg/Universal/PCD/Dxe/Pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Universal/PCD/Dxe/Pcd.c -------------------------------------------------------------------------------- /MdeModulePkg/Universal/PCD/Pei/Pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdeModulePkg/Universal/PCD/Pei/Pcd.c -------------------------------------------------------------------------------- /MdeModulePkg/Universal/RegularExpressionDxe/oniguruma/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MdeModulePkg/Universal/RegularExpressionDxe/oniguruma/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MdeModulePkg/Universal/RegularExpressionDxe/oniguruma/harnesses/fuzzer.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | dict = ascii_compatible.dict 3 | -------------------------------------------------------------------------------- /MdeModulePkg/Universal/RegularExpressionDxe/oniguruma/m4/.whatever: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MdePkg/Include/Arm/ProcessorBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Arm/ProcessorBind.h -------------------------------------------------------------------------------- /MdePkg/Include/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Base.h -------------------------------------------------------------------------------- /MdePkg/Include/Ebc/ProcessorBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ebc/ProcessorBind.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/Acpi.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Apriori.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/Apriori.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/AprioriFileName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/AprioriFileName.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Btt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/Btt.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/CapsuleReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/CapsuleReport.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Cper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/Cper.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/DxeServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/DxeServices.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/EventGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/EventGroup.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/EventLegacyBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/EventLegacyBios.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/FileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/FileInfo.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/FileSystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/FileSystemInfo.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/FmpCapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/FmpCapsule.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/GlobalVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/GlobalVariable.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Gpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/Gpt.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/GraphicsInfoHob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/GraphicsInfoHob.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/HobList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/HobList.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/JsonCapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/JsonCapsule.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Mps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/Mps.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/PcAnsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/PcAnsi.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/SmBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/SmBios.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/WinCertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Guid/WinCertificate.h -------------------------------------------------------------------------------- /MdePkg/Include/Ia32/Nasm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ia32/Nasm.inc -------------------------------------------------------------------------------- /MdePkg/Include/Ia32/ProcessorBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ia32/ProcessorBind.h -------------------------------------------------------------------------------- /MdePkg/Include/IndustryStandard/Bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/IndustryStandard/Bmp.h -------------------------------------------------------------------------------- /MdePkg/Include/IndustryStandard/Cxl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/IndustryStandard/Cxl.h -------------------------------------------------------------------------------- /MdePkg/Include/IndustryStandard/Mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/IndustryStandard/Mbr.h -------------------------------------------------------------------------------- /MdePkg/Include/IndustryStandard/Pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/IndustryStandard/Pci.h -------------------------------------------------------------------------------- /MdePkg/Include/IndustryStandard/Sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/IndustryStandard/Sd.h -------------------------------------------------------------------------------- /MdePkg/Include/IndustryStandard/Udf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/IndustryStandard/Udf.h -------------------------------------------------------------------------------- /MdePkg/Include/IndustryStandard/Usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/IndustryStandard/Usb.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/BaseLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/BaseLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/CpuLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/CpuLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/DebugLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/DebugLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/HobLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/HobLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/HstiLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/HstiLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/IoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/IoLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/PcdLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/PcdLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/PciCf8Lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/PciCf8Lib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/PciLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/PciLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/PeCoffLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/PeCoffLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/PostCodeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/PostCodeLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/PrintLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/PrintLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/RngLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/RngLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/S3IoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/S3IoLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/S3PciLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/S3PciLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/S3SmbusLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/S3SmbusLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/S3StallLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/S3StallLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/SafeIntLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/SafeIntLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/SmbusLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/SmbusLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/SmmIoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/SmmIoLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/SmmLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/SmmLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/SmmMemLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/SmmMemLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/TimerLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/TimerLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/UefiLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/UefiLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/UefiScsiLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/UefiScsiLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/UefiUsbLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/UefiUsbLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Library/UnitTestLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Library/UnitTestLib.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiBootMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Pi/PiBootMode.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiDependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Pi/PiDependency.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiDxeCis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Pi/PiDxeCis.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiFirmwareFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Pi/PiFirmwareFile.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiFirmwareVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Pi/PiFirmwareVolume.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiHob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Pi/PiHob.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiI2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Pi/PiI2c.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiMmCis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Pi/PiMmCis.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiMultiPhase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Pi/PiMultiPhase.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiPeiCis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Pi/PiPeiCis.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiS3BootScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Pi/PiS3BootScript.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiSmmCis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Pi/PiSmmCis.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiStatusCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Pi/PiStatusCode.h -------------------------------------------------------------------------------- /MdePkg/Include/PiDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/PiDxe.h -------------------------------------------------------------------------------- /MdePkg/Include/PiMm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/PiMm.h -------------------------------------------------------------------------------- /MdePkg/Include/PiPei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/PiPei.h -------------------------------------------------------------------------------- /MdePkg/Include/PiSmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/PiSmm.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/BlockIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/BlockIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/BlockIo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/BlockIo2.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Capsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/Capsule.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/CpuIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/CpuIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/Decompress.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/DelayedDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/DelayedDispatch.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/DxeIpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/DxeIpl.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/EndOfPeiPhase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/EndOfPeiPhase.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/FirmwareVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/FirmwareVolume.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/Graphics.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/I2cMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/I2cMaster.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/IsaHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/IsaHc.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/LoadFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/LoadFile.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/LoadImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/LoadImage.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/MasterBootMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/MasterBootMode.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/MemoryDiscovered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/MemoryDiscovered.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/MmAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/MmAccess.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/MmControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/MmControl.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/MpServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/MpServices.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/Pcd.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/PcdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/PcdInfo.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/PciCfg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/PciCfg2.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/PiPcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/PiPcd.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/PiPcdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/PiPcdInfo.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/RecoveryModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/RecoveryModule.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/Reset.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Reset2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/Reset2.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/S3Resume2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/S3Resume2.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/SecHobData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/SecHobData.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Security2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/Security2.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Smbus2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/Smbus2.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Stall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/Stall.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/StatusCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/StatusCode.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/SuperIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/SuperIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/TemporaryRamDone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Ppi/TemporaryRamDone.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/AcpiTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/AcpiTable.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Arp.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/AtaPassThru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/AtaPassThru.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Bds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Bds.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Bis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Bis.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/BlockIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/BlockIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/BlockIo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/BlockIo2.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/BluetoothHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/BluetoothHc.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/BluetoothIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/BluetoothIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Capsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Capsule.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Cpu.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/CpuIo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/CpuIo2.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/DebugPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/DebugPort.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Decompress.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/DeviceIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/DeviceIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/DevicePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/DevicePath.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Dhcp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Dhcp4.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Dhcp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Dhcp6.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/DiskInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/DiskInfo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/DiskIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/DiskIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/DiskIo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/DiskIo2.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Dns4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Dns4.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Dns6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Dns6.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Eap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Eap.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Ebc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Ebc.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/EdidActive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/EdidActive.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/EraseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/EraseBlock.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Ftp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Ftp4.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Hash.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Hash2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Hash2.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/HiiDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/HiiDatabase.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/HiiFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/HiiFont.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/HiiImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/HiiImage.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/HiiImageEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/HiiImageEx.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/HiiPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/HiiPopup.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/HiiString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/HiiString.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Http.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/I2cHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/I2cHost.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/I2cIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/I2cIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/I2cMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/I2cMaster.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Ip4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Ip4.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Ip4Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Ip4Config.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Ip4Config2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Ip4Config2.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Ip6.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Ip6Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Ip6Config.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/IpSec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/IpSec.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/IpSecConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/IpSecConfig.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/IsaHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/IsaHc.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Kms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Kms.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/LoadFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/LoadFile.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/LoadFile2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/LoadFile2.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Metronome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Metronome.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/MmAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/MmAccess.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/MmBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/MmBase.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/MmControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/MmControl.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/MmCpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/MmCpu.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/MmCpuIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/MmCpuIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/MmMp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/MmMp.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/MpService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/MpService.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Mtftp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Mtftp4.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Mtftp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Mtftp6.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Pcd.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/PcdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/PcdInfo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/PciIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/PciIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/PiPcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/PiPcd.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/PiPcdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/PiPcdInfo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/RamDisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/RamDisk.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Reset.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Rest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Rest.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/RestEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/RestEx.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Rng.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Runtime.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/ScsiIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/ScsiIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Security.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Security2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Security2.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/SerialIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/SerialIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Shell.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Smbios.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/SmbusHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/SmbusHc.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/SmmBase2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/SmmBase2.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/SmmCpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/SmmCpu.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/SmmCpuIo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/SmmCpuIo2.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/SpiHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/SpiHc.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/SpiIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/SpiIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/SpiSmmHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/SpiSmmHc.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/SuperIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/SuperIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/TapeIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/TapeIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Tcp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Tcp4.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Tcp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Tcp6.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Timer.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Timestamp.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Tls.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/TlsConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/TlsConfig.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Udp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Udp4.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Udp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Udp6.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/UgaDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/UgaDraw.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/UgaIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/UgaIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/UsbIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/UsbIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/Variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/Variable.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/WiFi.h -------------------------------------------------------------------------------- /MdePkg/Include/Protocol/WiFi2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Protocol/WiFi2.h -------------------------------------------------------------------------------- /MdePkg/Include/Register/Amd/Cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Register/Amd/Cpuid.h -------------------------------------------------------------------------------- /MdePkg/Include/Register/Amd/Ghcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Register/Amd/Ghcb.h -------------------------------------------------------------------------------- /MdePkg/Include/Register/Amd/Msr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Register/Amd/Msr.h -------------------------------------------------------------------------------- /MdePkg/Include/Register/Intel/Msr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Register/Intel/Msr.h -------------------------------------------------------------------------------- /MdePkg/Include/Uefi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Uefi.h -------------------------------------------------------------------------------- /MdePkg/Include/Uefi/UefiBaseType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Uefi/UefiBaseType.h -------------------------------------------------------------------------------- /MdePkg/Include/Uefi/UefiGpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Uefi/UefiGpt.h -------------------------------------------------------------------------------- /MdePkg/Include/Uefi/UefiPxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Uefi/UefiPxe.h -------------------------------------------------------------------------------- /MdePkg/Include/Uefi/UefiSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/Uefi/UefiSpec.h -------------------------------------------------------------------------------- /MdePkg/Include/X64/Nasm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/X64/Nasm.inc -------------------------------------------------------------------------------- /MdePkg/Include/X64/ProcessorBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Include/X64/ProcessorBind.h -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/ARShiftU64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/ARShiftU64.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/Arm/Math64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/Arm/Math64.S -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/BaseLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/BaseLib.inf -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/BaseLib.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/BaseLib.uni -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/BitField.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/BitField.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/CheckSum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/CheckSum.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/ChkStkGcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/ChkStkGcc.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/Cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/Cpu.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/DivU64x32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/DivU64x32.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/FilePaths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/FilePaths.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/Ia32/CpuId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/Ia32/CpuId.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/Ia32/Invd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/Ia32/Invd.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/Ia32/Mwait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/Ia32/Mwait.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/LRotU32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/LRotU32.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/LRotU64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/LRotU64.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/LShiftU64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/LShiftU64.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/LinkedList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/LinkedList.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/LongJump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/LongJump.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/Math64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/Math64.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/ModU64x32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/ModU64x32.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/MultS64x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/MultS64x64.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/MultU64x32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/MultU64x32.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/MultU64x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/MultU64x64.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/RRotU32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/RRotU32.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/RRotU64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/RRotU64.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/RShiftU64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/RShiftU64.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/SafeString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/SafeString.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/SetJump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/SetJump.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/String.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/Unaligned.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/Unaligned.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/X86FxSave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/X86FxSave.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/X86Msr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/X86Msr.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/X86RdRand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/X86RdRand.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/X86Thunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseLib/X86Thunk.c -------------------------------------------------------------------------------- /MdePkg/Library/BaseRngLib/BaseRng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/BaseRngLib/BaseRng.c -------------------------------------------------------------------------------- /MdePkg/Library/DxeHobLib/HobLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/DxeHobLib/HobLib.c -------------------------------------------------------------------------------- /MdePkg/Library/DxeHstiLib/HstiAip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/DxeHstiLib/HstiAip.c -------------------------------------------------------------------------------- /MdePkg/Library/DxeHstiLib/HstiDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/DxeHstiLib/HstiDxe.c -------------------------------------------------------------------------------- /MdePkg/Library/DxeHstiLib/HstiDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/DxeHstiLib/HstiDxe.h -------------------------------------------------------------------------------- /MdePkg/Library/PeiHobLib/HobLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/PeiHobLib/HobLib.c -------------------------------------------------------------------------------- /MdePkg/Library/SmmIoLib/SmmIoLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/SmmIoLib/SmmIoLib.c -------------------------------------------------------------------------------- /MdePkg/Library/UefiLib/Acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/UefiLib/Acpi.c -------------------------------------------------------------------------------- /MdePkg/Library/UefiLib/Console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/UefiLib/Console.c -------------------------------------------------------------------------------- /MdePkg/Library/UefiLib/UefiLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/UefiLib/UefiLib.c -------------------------------------------------------------------------------- /MdePkg/Library/UefiLib/UefiLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/UefiLib/UefiLib.inf -------------------------------------------------------------------------------- /MdePkg/Library/UefiLib/UefiLib.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/UefiLib/UefiLib.uni -------------------------------------------------------------------------------- /MdePkg/Library/UefiUsbLib/Hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Library/UefiUsbLib/Hid.c -------------------------------------------------------------------------------- /MdePkg/MdePkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/MdePkg.ci.yaml -------------------------------------------------------------------------------- /MdePkg/MdePkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/MdePkg.dec -------------------------------------------------------------------------------- /MdePkg/MdePkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/MdePkg.dsc -------------------------------------------------------------------------------- /MdePkg/MdePkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/MdePkg.uni -------------------------------------------------------------------------------- /MdePkg/MdePkgExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/MdePkgExtra.uni -------------------------------------------------------------------------------- /MdePkg/Test/MdePkgHostTest.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/MdePkg/Test/MdePkgHostTest.dsc -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/ArpDxe/ArpDriver.c -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/ArpDxe/ArpDriver.h -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/ArpDxe/ArpDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/ArpDxe/ArpDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/ArpDxe/ArpDxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/ArpDxe/ArpImpl.c -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/ArpDxe/ArpImpl.h -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ArpMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/ArpDxe/ArpMain.c -------------------------------------------------------------------------------- /NetworkPkg/ArpDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/ArpDxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp4Dxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Driver.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Driver.h -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Dxe.inf -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Dxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Dxe.uni -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Io.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Io.h -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Option.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp4Dxe/Dhcp4Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp4Dxe/Dhcp4Option.h -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp6Dxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Driver.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Driver.h -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.inf -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.uni -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Io.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Io.h -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Utility.c -------------------------------------------------------------------------------- /NetworkPkg/Dhcp6Dxe/Dhcp6Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Dhcp6Dxe/Dhcp6Utility.h -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DnsDxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DnsDxe/DnsDhcp.c -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DnsDxe/DnsDhcp.h -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DnsDxe/DnsDriver.c -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DnsDxe/DnsDriver.h -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DnsDxe/DnsDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DnsDxe/DnsDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DnsDxe/DnsDxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DnsDxe/DnsImpl.c -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DnsDxe/DnsImpl.h -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsProtocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DnsDxe/DnsProtocol.c -------------------------------------------------------------------------------- /NetworkPkg/DpcDxe/Dpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DpcDxe/Dpc.c -------------------------------------------------------------------------------- /NetworkPkg/DpcDxe/Dpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DpcDxe/Dpc.h -------------------------------------------------------------------------------- /NetworkPkg/DpcDxe/DpcDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DpcDxe/DpcDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/DpcDxe/DpcDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DpcDxe/DpcDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/DpcDxe/DpcDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/DpcDxe/DpcDxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/HttpDxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/ComponentName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/HttpDxe/ComponentName.h -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpDns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/HttpDxe/HttpDns.c -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpDns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/HttpDxe/HttpDns.h -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/HttpDxe/HttpDriver.c -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/HttpDxe/HttpDriver.h -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/HttpDxe/HttpDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/HttpDxe/HttpDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/HttpDxe/HttpDxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/HttpDxe/HttpImpl.c -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/HttpDxe/HttpImpl.h -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpProto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/HttpDxe/HttpProto.c -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpProto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/HttpDxe/HttpProto.h -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpsSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/HttpDxe/HttpsSupport.c -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/HttpDxe/HttpsSupport.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiCHAP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiCHAP.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiCHAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiCHAP.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiConfig.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiConfig.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiDhcp.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiDhcp.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDhcp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiDhcp6.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDhcp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiDhcp6.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiDns.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiDns.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiDriver.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiDriver.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiIbft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiIbft.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiIbft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiIbft.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiImpl.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiMisc.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiMisc.h -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiProto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiProto.c -------------------------------------------------------------------------------- /NetworkPkg/IScsiDxe/IScsiProto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/IScsiDxe/IScsiProto.h -------------------------------------------------------------------------------- /NetworkPkg/Include/Library/DpcLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Include/Library/DpcLib.h -------------------------------------------------------------------------------- /NetworkPkg/Include/Library/NetLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Include/Library/NetLib.h -------------------------------------------------------------------------------- /NetworkPkg/Include/Protocol/Dpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Include/Protocol/Dpc.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Common.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Common.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Config2.vfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Config2.vfr -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Config2Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Config2Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Config2Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Config2Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Config2Nv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Config2Nv.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Config2Nv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Config2Nv.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Driver.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Driver.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Dxe.inf -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Dxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Dxe.uni -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4DxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4DxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4DxeStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4DxeStrings.uni -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Icmp.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Icmp.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4If.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4If.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4If.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4If.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Igmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Igmp.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Igmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Igmp.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Input.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Input.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4NvData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4NvData.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Option.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Option.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Output.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Output.h -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Route.c -------------------------------------------------------------------------------- /NetworkPkg/Ip4Dxe/Ip4Route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip4Dxe/Ip4Route.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Common.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Common.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Config.vfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Config.vfr -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6ConfigImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6ConfigImpl.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6ConfigImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6ConfigImpl.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6ConfigNv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6ConfigNv.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6ConfigNv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6ConfigNv.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Driver.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Driver.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Dxe.inf -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Dxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Dxe.uni -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6DxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6DxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6DxeStrings.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6DxeStrings.uni -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Icmp.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Icmp.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6If.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6If.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6If.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6If.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Input.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Input.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Mld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Mld.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Mld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Mld.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Nd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Nd.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Nd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Nd.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6NvData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6NvData.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Option.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Option.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Output.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Output.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Route.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Ip6Dxe/Ip6Route.h -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/MnpDxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/ComponentName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/MnpDxe/ComponentName.h -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/MnpDxe/MnpConfig.c -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/MnpDxe/MnpDriver.c -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/MnpDxe/MnpDriver.h -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/MnpDxe/MnpDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/MnpDxe/MnpDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/MnpDxe/MnpDxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/MnpDxe/MnpImpl.h -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/MnpDxe/MnpIo.c -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/MnpDxe/MnpMain.c -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpVlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/MnpDxe/MnpVlan.c -------------------------------------------------------------------------------- /NetworkPkg/MnpDxe/MnpVlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/MnpDxe/MnpVlan.h -------------------------------------------------------------------------------- /NetworkPkg/Mtftp4Dxe/Mtftp4Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp4Dxe/Mtftp4Driver.c -------------------------------------------------------------------------------- /NetworkPkg/Mtftp4Dxe/Mtftp4Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp4Dxe/Mtftp4Driver.h -------------------------------------------------------------------------------- /NetworkPkg/Mtftp4Dxe/Mtftp4Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp4Dxe/Mtftp4Dxe.inf -------------------------------------------------------------------------------- /NetworkPkg/Mtftp4Dxe/Mtftp4Dxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp4Dxe/Mtftp4Dxe.uni -------------------------------------------------------------------------------- /NetworkPkg/Mtftp4Dxe/Mtftp4Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp4Dxe/Mtftp4Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Mtftp4Dxe/Mtftp4Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp4Dxe/Mtftp4Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Mtftp4Dxe/Mtftp4Option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp4Dxe/Mtftp4Option.c -------------------------------------------------------------------------------- /NetworkPkg/Mtftp4Dxe/Mtftp4Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp4Dxe/Mtftp4Option.h -------------------------------------------------------------------------------- /NetworkPkg/Mtftp4Dxe/Mtftp4Rrq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp4Dxe/Mtftp4Rrq.c -------------------------------------------------------------------------------- /NetworkPkg/Mtftp4Dxe/Mtftp4Wrq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp4Dxe/Mtftp4Wrq.c -------------------------------------------------------------------------------- /NetworkPkg/Mtftp6Dxe/Mtftp6Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp6Dxe/Mtftp6Driver.c -------------------------------------------------------------------------------- /NetworkPkg/Mtftp6Dxe/Mtftp6Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp6Dxe/Mtftp6Driver.h -------------------------------------------------------------------------------- /NetworkPkg/Mtftp6Dxe/Mtftp6Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp6Dxe/Mtftp6Dxe.inf -------------------------------------------------------------------------------- /NetworkPkg/Mtftp6Dxe/Mtftp6Dxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp6Dxe/Mtftp6Dxe.uni -------------------------------------------------------------------------------- /NetworkPkg/Mtftp6Dxe/Mtftp6Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp6Dxe/Mtftp6Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Mtftp6Dxe/Mtftp6Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp6Dxe/Mtftp6Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Mtftp6Dxe/Mtftp6Option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp6Dxe/Mtftp6Option.c -------------------------------------------------------------------------------- /NetworkPkg/Mtftp6Dxe/Mtftp6Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp6Dxe/Mtftp6Option.h -------------------------------------------------------------------------------- /NetworkPkg/Mtftp6Dxe/Mtftp6Rrq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp6Dxe/Mtftp6Rrq.c -------------------------------------------------------------------------------- /NetworkPkg/Mtftp6Dxe/Mtftp6Wrq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Mtftp6Dxe/Mtftp6Wrq.c -------------------------------------------------------------------------------- /NetworkPkg/Network.dsc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Network.dsc.inc -------------------------------------------------------------------------------- /NetworkPkg/Network.fdf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Network.fdf.inc -------------------------------------------------------------------------------- /NetworkPkg/NetworkDefines.dsc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/NetworkDefines.dsc.inc -------------------------------------------------------------------------------- /NetworkPkg/NetworkLibs.dsc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/NetworkLibs.dsc.inc -------------------------------------------------------------------------------- /NetworkPkg/NetworkPcds.dsc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/NetworkPcds.dsc.inc -------------------------------------------------------------------------------- /NetworkPkg/NetworkPkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/NetworkPkg.ci.yaml -------------------------------------------------------------------------------- /NetworkPkg/NetworkPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/NetworkPkg.dec -------------------------------------------------------------------------------- /NetworkPkg/NetworkPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/NetworkPkg.dsc -------------------------------------------------------------------------------- /NetworkPkg/NetworkPkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/NetworkPkg.uni -------------------------------------------------------------------------------- /NetworkPkg/NetworkPkgExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/NetworkPkgExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Callback.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Get_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Get_status.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Initialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Initialize.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Mcast_ip_to_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Mcast_ip_to_mac.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Nvdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Nvdata.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Receive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Receive.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Receive_filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Receive_filters.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Reset.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Shutdown.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Snp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Snp.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Snp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Snp.h -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/SnpDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/SnpDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/SnpDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/SnpDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/SnpDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/SnpDxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Start.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Station_address.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Station_address.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Statistics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Statistics.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Stop.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/Transmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/Transmit.c -------------------------------------------------------------------------------- /NetworkPkg/SnpDxe/WaitForPacket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/SnpDxe/WaitForPacket.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/SockImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/SockImpl.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/SockImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/SockImpl.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/SockInterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/SockInterface.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/Socket.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpDispatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpDispatcher.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpDriver.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpDriver.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpDxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpFunc.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpInput.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpIo.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpMain.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpMain.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpMisc.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpOption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpOption.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpOption.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpOutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpOutput.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpProto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpProto.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TcpDxe/TcpTimer.c -------------------------------------------------------------------------------- /NetworkPkg/TlsDxe/TlsDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TlsDxe/TlsDriver.c -------------------------------------------------------------------------------- /NetworkPkg/TlsDxe/TlsDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TlsDxe/TlsDriver.h -------------------------------------------------------------------------------- /NetworkPkg/TlsDxe/TlsDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TlsDxe/TlsDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/TlsDxe/TlsDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TlsDxe/TlsDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/TlsDxe/TlsDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TlsDxe/TlsDxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/TlsDxe/TlsImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TlsDxe/TlsImpl.c -------------------------------------------------------------------------------- /NetworkPkg/TlsDxe/TlsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TlsDxe/TlsImpl.h -------------------------------------------------------------------------------- /NetworkPkg/TlsDxe/TlsProtocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/TlsDxe/TlsProtocol.c -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp4Dxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/Udp4Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp4Dxe/Udp4Driver.c -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/Udp4Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp4Dxe/Udp4Driver.h -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/Udp4Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp4Dxe/Udp4Dxe.inf -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/Udp4Dxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp4Dxe/Udp4Dxe.uni -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/Udp4DxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp4Dxe/Udp4DxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/Udp4Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp4Dxe/Udp4Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/Udp4Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp4Dxe/Udp4Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Udp4Dxe/Udp4Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp4Dxe/Udp4Main.c -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp6Dxe/ComponentName.c -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/Udp6Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp6Dxe/Udp6Driver.c -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/Udp6Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp6Dxe/Udp6Driver.h -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/Udp6Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp6Dxe/Udp6Dxe.inf -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/Udp6Dxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp6Dxe/Udp6Dxe.uni -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/Udp6DxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp6Dxe/Udp6DxeExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/Udp6Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp6Dxe/Udp6Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/Udp6Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp6Dxe/Udp6Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Udp6Dxe/Udp6Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/Udp6Dxe/Udp6Main.c -------------------------------------------------------------------------------- /NetworkPkg/UefiPxeBcDxe/PxeBcBoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/UefiPxeBcDxe/PxeBcBoot.c -------------------------------------------------------------------------------- /NetworkPkg/UefiPxeBcDxe/PxeBcBoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/UefiPxeBcDxe/PxeBcBoot.h -------------------------------------------------------------------------------- /NetworkPkg/UefiPxeBcDxe/PxeBcImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/UefiPxeBcDxe/PxeBcImpl.c -------------------------------------------------------------------------------- /NetworkPkg/UefiPxeBcDxe/PxeBcImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/NetworkPkg/UefiPxeBcDxe/PxeBcImpl.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/README.md -------------------------------------------------------------------------------- /ShellPkg/Application/Shell/Shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/ShellPkg/Application/Shell/Shell.c -------------------------------------------------------------------------------- /ShellPkg/Application/Shell/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/ShellPkg/Application/Shell/Shell.h -------------------------------------------------------------------------------- /ShellPkg/Include/Library/ShellLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/ShellPkg/Include/Library/ShellLib.h -------------------------------------------------------------------------------- /ShellPkg/ShellPkg.ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/ShellPkg/ShellPkg.ci.yaml -------------------------------------------------------------------------------- /ShellPkg/ShellPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/ShellPkg/ShellPkg.dec -------------------------------------------------------------------------------- /ShellPkg/ShellPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/ShellPkg/ShellPkg.dsc -------------------------------------------------------------------------------- /edksetup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/edksetup.bat -------------------------------------------------------------------------------- /edksetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/iotg-mgbe-undi-driver/HEAD/edksetup.sh --------------------------------------------------------------------------------