Home | History | Annotate | Download | only in Shell

Lines Matching refs:CurrentString

303   CONST CHAR16  *CurrentString;

321 CurrentString = Environment[CurrentCount];
322 if (CurrentString == NULL) {
325 ASSERT(StrStr(CurrentString, L"=") != NULL);
332 Node->Key = AllocateZeroPool((StrStr(CurrentString, L"=") - CurrentString + 1) * sizeof(CHAR16));
343 StrStr(CurrentString, L"=") - CurrentString + 1,
344 CurrentString,
345 StrStr(CurrentString, L"=") - CurrentString
351 Node->Val = AllocateCopyPool(StrSize(CurrentString) - StrSize(Node->Key), CurrentString + StrLen(Node->Key) + 1);