Searched refs:Alias (Results 1 - 20 of 20) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel3CommandsLib/
H A DAlias.c2 Main file for Alias shell level 3 function.
32 CHAR16 *Alias; local
43 Alias = AllocateZeroPool(StrSize(ConstAllAliasList));
44 if (Alias == NULL) {
50 CopyMem(Alias, Walker, StrSize(Walker));
51 Walker = StrStr(Alias, L";");
56 Command = gEfiShellProtocol->GetAlias(Alias, &Volatile);
57 if (ShellCommandIsOnAliasList(Alias)) {
60 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_ALIAS_OUTPUT), gShellLevel3HiiHandle, !Volatile?L' ':L'*', Alias, Command);
63 FreePool(Alias);
[all...]
/vbox/src/VBox/ValidationKit/testmanager/
H A Dapache-template-2.4.conf46 Alias /testmanager/htdocs/downloads/VBoxValidationKit.zip ${VBoxBuildOutputDir}/VBoxValidationKit.zip
52 Alias /testmanager/htdocs/ ${TestManagerRootDir}/htdocs/
58 Alias /testmanager/logs/ /var/tmp/testmanager/
64 Alias /testmanager/ ${TestManagerRootDir}/cgi/
H A Dapache-template-2.2.conf45 Alias /testmanager/htdocs/downloads/VBoxValidationKit.zip ${VBoxBuildOutputDir}/VBoxValidationKit.zip
52 Alias /testmanager/htdocs/ ${TestManagerRootDir}/htdocs/
60 Alias /testmanager/logs/ /var/tmp/testmanager/
68 Alias /testmanager/ ${TestManagerRootDir}/cgi/
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel1CommandsLib/
H A DFor.c123 @param[in] Alias The alias to test for.
133 IN CONST CHAR16 *Alias,
144 ASSERT(Alias != NULL);
147 // check for the Alias
154 ASSERT(Node->Alias != NULL);
155 if (StrCmp(Node->Alias, Alias)==0) {
168 ASSERT(Node->Alias == NULL);
169 Node->Alias = StrnCatGrow(&Node->Alias, NUL
132 InternalUpdateAliasOnList( IN CONST CHAR16 *Alias, IN CONST CHAR16 *CommandString, IN OUT LIST_ENTRY *List ) argument
188 InternalIsAliasOnList( IN CONST CHAR16 *Alias, IN CONST LIST_ENTRY *List ) argument
224 InternalRemoveAliasFromList( IN CONST CHAR16 *Alias, IN OUT LIST_ENTRY *List ) argument
[all...]
/vbox/src/VBox/Additions/common/crOpenGL/
H A DLinux_i386_exports.py64 alias = apiutil.Alias(func_name)
H A DLinux_i386_exports_dri.py64 alias = apiutil.Alias(func_name)
H A DSunOS_i386_exports.py68 alias = apiutil.Alias(func_name)
H A DSunOS_i386_exports_dri.py68 alias = apiutil.Alias(func_name)
H A Dwindows_getprocaddress.py54 alias = apiutil.Alias(func_name)
H A Dwindows_i386_exports.py63 alias = apiutil.Alias(func_name)
H A Dentrypoints.py117 alias = apiutil.Alias(func_name)
H A Dwindows_exports.py63 alias = apiutil.Alias(func_name)
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellCommandLib/
H A DUefiShellCommandLib.c552 If Alias is NULL, then ASSERT().
555 @param[in] Alias Pointer to Alias
565 IN CONST CHAR16 *Alias
574 ASSERT(Alias != NULL);
582 Node->Alias = AllocateZeroPool(StrSize(Alias));
584 ASSERT(Node->Alias != NULL);
590 StrCpy(Node->Alias , Alias );
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Include/Library/
H A DShellCommandLib.h225 CHAR16 *Alias; member in struct:__anon12760
232 If Alias is NULL, then ASSERT().
235 @param[in] Alias The pointer to Alias.
245 IN CONST CHAR16 *Alias
264 @param[in] Alias The alias to test for.
272 IN CONST CHAR16 *Alias
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DShellProtocol.h850 @return If Alias is not NULL, it will return a pointer to
852 If Alias is NULL, ReturnedData points to a ';'
856 @retval NULL Alias was not a valid Alias
868 This function creates an alias for a shell command or if Alias is NULL it will delete an existing alias.
873 @param[in] Alias Points to the NULL-terminated alias for the shell command. If this is NULL, and
875 @param[in] Volatile if TRUE the Alias being set will be stored in a volatile fashion. if FALSE the
876 Alias being set will be stored in a non-volatile fashion.
878 @retval EFI_SUCCESS Alias created or deleted successfully.
879 @retval EFI_NOT_FOUND the Alias intende
[all...]
H A DShellProtocol.c2896 CHAR16 *Alias; local
2922 Alias = GetVariable(VariableName, &gShellAliasGuid);
2937 @param[in] Alias Points to the NULL-terminated shell alias.
2943 @return If Alias is not NULL, it will return a pointer to
2945 If Alias is NULL, ReturnedData points to a ';'
2949 @retval NULL Alias was not a valid Alias
2954 IN CONST CHAR16 *Alias,
2963 if (Alias != NULL) {
2965 return (AddBufferToFreeList(GetVariable((CHAR16*)Alias,
2953 EfiShellGetAlias( IN CONST CHAR16 *Alias, OUT BOOLEAN *Volatile OPTIONAL ) argument
3009 InternalSetAlias( IN CONST CHAR16 *Command, IN CONST CHAR16 *Alias, IN BOOLEAN Volatile ) argument
3057 EfiShellSetAlias( IN CONST CHAR16 *Command, IN CONST CHAR16 *Alias, IN BOOLEAN Replace, IN BOOLEAN Volatile ) argument
[all...]
H A DShell.c513 Status = InternalSetAlias(Node->CommandString, Node->Alias, TRUE);
1100 for (Temp = StrStr(OriginalCommandLine, AliasListNode->Alias)
1102 ; Temp = StrStr(Temp+1, AliasListNode->Alias)
1172 ShellCopySearchAndReplace(NewCommandLine1, NewCommandLine2, NewSize, AliasListNode->Alias, AliasListNode->CommandString, TRUE, FALSE);
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Include/Protocol/
H A DEfiShell.h750 @param[in] Alias Points to the NULL-terminated alias for the shell command. If this is NULL, and
755 @param[in] Volatile if TRUE the Alias being set will be stored in a volatile fashion. if FALSE the
756 Alias being set will be stored in a non-volatile fashion.
758 @retval EFI_SUCCESS Alias created or deleted successfully.
766 IN CONST CHAR16 *Alias,
775 @param[in] Alias Points to the NULL-terminated shell alias.
780 @return If Alias is not NULL, it will return a pointer to
782 If Alias is NULL, ReturnedData points to a ';'
786 @retval NULL Alias was not a valid Alias
[all...]
/vbox/src/VBox/GuestHost/OpenGL/glapi_parser/
H A Dapiutil.py330 def Alias(funcName): function
332 Ex: Alias('DrawArraysEXT') = 'DrawArrays'.
339 """Like Alias(), but the inverse."""
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageList.cpp788 p->COMGETTER(Alias)(alias.asOutParam());

Completed in 202 milliseconds