Home | History | Annotate | Download | only in Edit

Lines Matching refs:Src

21   @param Src                    The line structure to copy from.

28 IN EFI_EDITOR_LINE *Src
43 Dest->Buffer = CatSPrint (NULL, L"%s", Src->Buffer);
53 Dest->Size = Src->Size;
55 Dest->Type = Src->Type;
56 Dest->Link = Src->Link;
64 @param Src The line structure to free.
68 IN EFI_EDITOR_LINE *Src
71 if (Src == NULL) {
77 SHELL_FREE_NON_NULL (Src->Buffer);
78 SHELL_FREE_NON_NULL (Src);