Home | History | Annotate | Download | only in LinuxLoader

Lines Matching refs:Item

18   Extract the next item from the command line.

24 @param[out] Item Pointer to the allocated buffer where the
25 item is stored.
28 @retval EFI_NOT_FOUND No item found.
36 OUT CHAR16 **Item
80 *Item = Buffer;
86 Check if an item of the command line is a flag or not.
88 @param[in] Item Command line item.
90 @retval TRUE The item is a flag.
91 @retval FALSE The item is not a flag.
97 IN CONST CHAR16 *Item
100 return ((Item[0] == L'-') && (Item[2] == L'\0'));
162 CHAR16 *Item;
196 Status = ExtractNextItem (&Walker, &Item);
198 if (!IsFlag (Item)) {
199 *KernelTextDevicePath = Item;
202 FreePool (Item);
215 Status2 = ExtractNextItem (&Walker, &Item);
224 if (!IsFlag (Item)) {
225 PrintHii (NULL, STRING_TOKEN (STR_INVALID_FLAG), Item[0], Item[1]);
226 FreePool (Item);
229 Flag = Item[1];
230 FreePool (Item);
232 Status2 = ExtractNextItem (&Walker, &Item);
241 if (IsFlag (Item)) {
243 FreePool (Item);
253 *AtagMachineType = StrDecimalToUintn (Item);
257 *FdtTextDevicePath = Item;
266 *LinuxCommandLine = Item;
270 *InitrdTextDevicePath = Item;
275 FreePool (Item);