Lines Matching refs:Command
217 @param[in] Sections name of command's sub sections to find
349 @param[in] Sections name of command's sub sections to find
457 "Brief Description" for the .TH section as specified by Command. If the
458 command section is not found return EFI_NOT_FOUND.
463 @param[in] Command name of command's section to find
474 IN CONST CHAR16 *Command,
489 || Command == NULL
500 Start = StrLen(Command);
502 && (*(Command + Start - 1) != L'\\')
503 && (*(Command + Start - 1) != L'/')
504 && (*(Command + Start - 1) != L':')) {
511 TitleLength = StrSize(Command + Start) + (StrLen(StartString) + StrLen(EndString)) * sizeof(CHAR16);
517 StrCatS(TitleString, TitleLength/sizeof(CHAR16), Command + Start);
567 ".TH", compares Command and the MAN file commnd name without respect to case, and
570 where group 1 is the Command Name and group 2 is the Short Description.
572 @param[in] Command name of command whose MAN file we think Line came from
576 @param[out] Found TRUE if the Title Header was found and it belongs to Command
583 IN CONST CHAR16 *Command,
597 UINTN CommandIndex; // Indexes Command as we compare its chars to the MAN file.
640 ReturnValue = TRUE; // This is *some* command's title header line.
642 // Do not increment Line; it points to the first character of the command
648 // Compare Command to the title header command name, ignoring case. When we
649 // reach the end of the command (i.e. we see white space), the next state
653 ReturnFound = TRUE; // This is the desired command's title header line.
656 else if (InternalShellCharToUpper (*Line) != InternalShellCharToUpper (*(Command + CommandIndex++))) {
689 "Brief Description" for the .TH section as specified by Command. If the
690 command section is not found return EFI_NOT_FOUND.
695 @param[in] Command name of command's section to find as entered on the
696 command line (may be a relative or absolute path or
710 IN CONST CHAR16 *Command,
723 || Command == NULL
741 Start = StrLen(Command);
743 && (*(Command + Start - 1) != L'\\')
744 && (*(Command + Start - 1) != L'/')
745 && (*(Command + Start - 1) != L':')) {
759 if (IsTitleHeader (Command+Start, ReadLine, BriefDesc, BriefSize, &Found)) {
770 This function returns the help information for the specified command. The help text
783 @param[in] Command Points to the NULL-terminated UEFI Shell command name.
797 @retval EFI_NOT_FOUND There is no help text available for Command.
802 IN CONST CHAR16 *Command,
825 || Command == NULL
847 TempString = ShellCommandGetCommandHelp(Command);
850 Status = ManBufferFindTitleSection(&TempString2, Command, BriefDesc, &BriefSize);
876 Status = ManFileFindTitleSection(FileHandle, Command, BriefDesc, &BriefSize, &Ascii);
960 Status = ManBufferFindTitleSection(&TempString2, Command, BriefDesc, &BriefSize);