Lines Matching refs:OldInfo
1428 SHELL_FILE_ARG *OldInfo; in InternalShellConvertFileListType() local
1442 OldInfo = CR (Link, SHELL_FILE_ARG, Link, SHELL_FILE_ARG_SIGNATURE); in InternalShellConvertFileListType()
1443 ASSERT(OldInfo != NULL); in InternalShellConvertFileListType()
1448 if (OldInfo->Status != EFI_SUCCESS) { in InternalShellConvertFileListType()
1455 ASSERT(OldInfo->Info != NULL); in InternalShellConvertFileListType()
1456 ASSERT(OldInfo->FullName != NULL); in InternalShellConvertFileListType()
1457 ASSERT(OldInfo->FileName != NULL); in InternalShellConvertFileListType()
1472 NewInfo->Handle = OldInfo->Handle; in InternalShellConvertFileListType()
1473 NewInfo->Status = OldInfo->Status; in InternalShellConvertFileListType()
1476 OldInfo->Handle = 0; in InternalShellConvertFileListType()
1481 NewInfo->FullName = AllocateCopyPool(StrSize(OldInfo->FullName), OldInfo->FullName); in InternalShellConvertFileListType()
1482 NewInfo->FileName = AllocateCopyPool(StrSize(OldInfo->FileName), OldInfo->FileName); in InternalShellConvertFileListType()
1483 NewInfo->Info = AllocateCopyPool((UINTN)OldInfo->Info->Size, OldInfo->Info); in InternalShellConvertFileListType()