Home | History | Annotate | Download | only in EfiFileLib

Lines Matching refs:StrLen

242     VolStrLen = StrLen (mFsInfo[Index]->VolumeLabel);

667 UINTN StrLen;
685 StrLen = AsciiStrSize (PathName);
686 if (StrLen <= 1) {
691 for (FileStart = 0; FileStart < StrLen; FileStart++) {
703 if (FileStart == StrLen) {
730 StrLen = AsciiStrLen (gCwd);
731 if ((*PathName != '/') && (*PathName != '\\') && (gCwd[StrLen-1] != '/') && (gCwd[StrLen-1] != '\\')) {
750 File->DeviceName = AllocatePool (StrLen);
751 AsciiStrCpyS (File->DeviceName, StrLen, PathName);
1617 UINTN StrLen, AllocLen;
1624 StrLen = AsciiStrSize (Cwd);
1625 if (StrLen <= 2) {
1630 StrLen = AsciiStrSize (Path);
1631 AllocLen = AsciiStrSize (Cwd) + StrLen + 1;
1638 End = Path + StrLen;
1648 StrLen = AsciiStrLen (NewPath);
1649 for (i = StrLen; i >= 0; i--) {