HomeSort by relevance Sort by last modified time
    Searched defs:NewStream (Results 1 - 2 of 2) sorted by null

  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/SectionExtractionDxe/
SectionExtraction.c 338 FRAMEWORK_SECTION_STREAM_NODE *NewStream;
344 NewStream = AllocatePool (sizeof (FRAMEWORK_SECTION_STREAM_NODE));
345 if (NewStream == NULL) {
355 NewStream->StreamBuffer = AllocatePool (SectionStreamLength);
356 if (NewStream->StreamBuffer == NULL) {
357 FreePool (NewStream);
363 CopyMem (NewStream->StreamBuffer, SectionStream, SectionStreamLength);
368 NewStream->StreamBuffer = NULL;
376 NewStream->StreamBuffer = SectionStream;
382 NewStream->Signature = FRAMEWORK_SECTION_STREAM_SIGNATURE;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/SectionExtraction/
CoreSectionExtraction.c 347 CORE_SECTION_STREAM_NODE *NewStream;
353 NewStream = AllocatePool (sizeof (CORE_SECTION_STREAM_NODE));
354 if (NewStream == NULL) {
364 NewStream->StreamBuffer = AllocatePool (SectionStreamLength);
365 if (NewStream->StreamBuffer == NULL) {
366 CoreFreePool (NewStream);
372 CopyMem (NewStream->StreamBuffer, SectionStream, SectionStreamLength);
377 NewStream->StreamBuffer = NULL;
385 NewStream->StreamBuffer = SectionStream;
391 NewStream->Signature = CORE_SECTION_STREAM_SIGNATURE;
    [all...]

Completed in 183 milliseconds