Home | History | Annotate | Download | only in UefiShellLib

Lines Matching full:newstring

2579   This is a find and replace function.  Upon successful return the NewString is a copy of

2582 If SourceString and NewString overlap the behavior is undefined.
2587 @param[in, out] NewString The string with resultant buffer.
2588 @param[in] NewSize The size in bytes of NewString.
2596 @retval EFI_INVALID_PARAMETER NewString was NULL.
2609 IN OUT CHAR16 *NewString,
2621 || (NewString == NULL)
2641 NewString = ZeroMem(NewString, NewSize);
2651 Size = StrSize(NewString);
2656 StrCatS(NewString, NewSize/sizeof(CHAR16), Replace);
2658 Size = StrSize(NewString);
2663 StrnCatS(NewString, NewSize/sizeof(CHAR16), SourceString, 1);