Lines Matching refs:AllocLen
1617 UINTN StrLen, AllocLen; in ExpandPath() local
1631 AllocLen = AsciiStrSize (Cwd) + StrLen + 1; in ExpandPath()
1632 NewPath = AllocatePool (AllocLen); in ExpandPath()
1636 AsciiStrCpyS (NewPath, AllocLen, Cwd); in ExpandPath()
1647 AsciiStrnCatS (NewPath, AllocLen, Start, Work - Start); in ExpandPath()
1670 AsciiStrnCatS (NewPath, AllocLen, Start, End - Start); in ExpandPath()
1693 UINTN Len, AllocLen; in EfiSetCwd() local
1736 AllocLen = AsciiStrSize (File->DeviceName) + AsciiStrSize (File->FileName) + 10; in EfiSetCwd()
1737 gCwd = AllocatePool (AllocLen); in EfiSetCwd()
1742 AsciiStrCpyS (gCwd, AllocLen, File->DeviceName); in EfiSetCwd()
1744 AsciiStrCatS (gCwd, AllocLen, ":\\"); in EfiSetCwd()
1746 AsciiStrCatS (gCwd, AllocLen, ":"); in EfiSetCwd()
1747 AsciiStrCatS (gCwd, AllocLen, File->FileName); in EfiSetCwd()