Home
last modified time | relevance | path

Searched refs:Param (Results 1 – 23 of 23) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
DBmLoadOption.c976 BM_COLLECT_LOAD_OPTIONS_PARAM *Param; in BmCollectLoadOptions() local
978 Param = (BM_COLLECT_LOAD_OPTIONS_PARAM *) Context; in BmCollectLoadOptions()
980 if (CompareGuid (Guid, Param->Guid) && ( in BmCollectLoadOptions()
981 Param->OptionType == LoadOptionTypePlatformRecovery && in BmCollectLoadOptions()
987 for (Index = 0; Index < Param->OptionCount; Index++) { in BmCollectLoadOptions()
988 if (Param->Options[Index].OptionNumber > Option.OptionNumber) { in BmCollectLoadOptions()
992 Param->Options = ReallocatePool ( in BmCollectLoadOptions()
993 Param->OptionCount * sizeof (EFI_BOOT_MANAGER_LOAD_OPTION), in BmCollectLoadOptions()
994 (Param->OptionCount + 1) * sizeof (EFI_BOOT_MANAGER_LOAD_OPTION), in BmCollectLoadOptions()
995 Param->Options in BmCollectLoadOptions()
[all …]
DBmHotkey.c159 BM_COLLECT_KEY_OPTIONS_PARAM *Param; in BmCollectKeyOptions() local
164 Param = (BM_COLLECT_KEY_OPTIONS_PARAM *) Context; in BmCollectKeyOptions()
171 Param->KeyOptions = ReallocatePool ( in BmCollectKeyOptions()
172 Param->KeyOptionCount * sizeof (EFI_BOOT_MANAGER_KEY_OPTION), in BmCollectKeyOptions()
173 (Param->KeyOptionCount + 1) * sizeof (EFI_BOOT_MANAGER_KEY_OPTION), in BmCollectKeyOptions()
174 Param->KeyOptions in BmCollectKeyOptions()
176 ASSERT (Param->KeyOptions != NULL); in BmCollectKeyOptions()
180 for (Index = 0; Index < Param->KeyOptionCount; Index++) { in BmCollectKeyOptions()
181 if (KeyOption->OptionNumber < Param->KeyOptions[Index].OptionNumber) { in BmCollectKeyOptions()
185 …CopyMem (&Param->KeyOptions[Index + 1], &Param->KeyOptions[Index], (Param->KeyOptionCount - Index)… in BmCollectKeyOptions()
[all …]
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel3CommandsLib/
DTouch.c175 CONST CHAR16 *Param; in ShellCommandRunTouch() local
225 for ( ParamCount = 1, Param = ShellCommandLineGetRawValue(Package, ParamCount) in ShellCommandRunTouch()
226 ; Param != NULL in ShellCommandRunTouch()
227 ; ParamCount++, Param = ShellCommandLineGetRawValue(Package, ParamCount) in ShellCommandRunTouch()
229 … Status = ShellOpenFileMetaArg((CHAR16*)Param, EFI_FILE_MODE_READ|EFI_FILE_MODE_WRITE, &FileList); in ShellCommandRunTouch()
231 …-1, -1, NULL, STRING_TOKEN (STR_GEN_PARAM_INV), gShellLevel3HiiHandle, L"touch", (CHAR16*)Param); in ShellCommandRunTouch()
244 …PrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_FILE_NF), gShellLevel3HiiHandle, L"touch", Param); in ShellCommandRunTouch()
DType.c183 CONST CHAR16 *Param; in ShellCommandRunType() local
241 for ( ParamCount = 1, Param = ShellCommandLineGetRawValue(Package, ParamCount) in ShellCommandRunType()
242 ; Param != NULL in ShellCommandRunType()
243 ; ParamCount++, Param = ShellCommandLineGetRawValue(Package, ParamCount) in ShellCommandRunType()
245 Status = ShellOpenFileMetaArg((CHAR16*)Param, EFI_FILE_MODE_READ, &FileList); in ShellCommandRunType()
247 …-1, NULL, STRING_TOKEN (STR_GEN_FILE_OPEN_FAIL), gShellLevel3HiiHandle, L"type", (CHAR16*)Param); in ShellCommandRunType()
260 …lPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_FILE_NF), gShellLevel3HiiHandle, L"type", Param); in ShellCommandRunType()
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
DRm.c274 CONST CHAR16 *Param; in ShellCommandRunRm() local
321 for ( ParamCount = 1, Param = ShellCommandLineGetRawValue(Package, ParamCount) in ShellCommandRunRm()
322 ; Param != NULL in ShellCommandRunRm()
323 ; ParamCount++, Param = ShellCommandLineGetRawValue(Package, ParamCount) in ShellCommandRunRm()
325 … Status = ShellOpenFileMetaArg((CHAR16*)Param, EFI_FILE_MODE_WRITE|EFI_FILE_MODE_READ, &FileList); in ShellCommandRunRm()
327 …iiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_FILE_NF), gShellLevel2HiiHandle, L"rm", (CHAR16*)Param); in ShellCommandRunRm()
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
DLoadPciRom.c81 CONST CHAR16 *Param; in ShellCommandRunLoadPciRom() local
119 for ( ParamCount = 1, Param = ShellCommandLineGetRawValue(Package, ParamCount) in ShellCommandRunLoadPciRom()
120 ; Param != NULL in ShellCommandRunLoadPciRom()
121 ; ParamCount++, Param = ShellCommandLineGetRawValue(Package, ParamCount) in ShellCommandRunLoadPciRom()
123 … Status = ShellOpenFileMetaArg((CHAR16*)Param, EFI_FILE_MODE_WRITE|EFI_FILE_MODE_READ, &FileList); in ShellCommandRunLoadPciRom()
125 …1, -1, NULL, STRING_TOKEN (STR_GEN_FILE_OPEN_FAIL), gShellDebug1HiiHandle, L"loadpcirom", Param); in ShellCommandRunLoadPciRom()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
DCodeFragment.py160 def __init__(self, Name, Param, Begin, End): argument
162 self.ParamList = Param
Dc.py1167 for Param in ParamList:
1168 if Param.Name.strip() == PredVar:
1170 Type = GetTypeInfo(PredVarList[1:], Param.Modifier, FullFileName, TargetType)
1173 TypeList = GetDataTypeFromModifier(Param.Modifier).split()
1367 for Param in ParamList:
1368 if Param.StartLine <= StartLine:
1369 …N_LAYOUT_CHECK_FUNCTION_NAME, 'Parameter %s should be in its own line.' % Param.Name, FileTable, R…
1370 if Param.StartLine - StartLine > 1:
1371 …N_LAYOUT_CHECK_FUNCTION_NAME, 'Empty line appears before Parameter %s.' % Param.Name, FileTable, R…
1372 …tch(Param.Name) and not Param.Name in ParamIgnoreList and not EccGlobalData.gException.IsException…
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
DCodeFragment.py181 def __init__(self, Name, Param, Begin, End): argument
183 self.ParamList = Param
/device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
DIpmiNetFnApp.h98 UINT8 Param; member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
DPython.asdl86 expr_context = Load | Store | Del | AugLoad | AugStore | Param
/device/linaro/bootloader/edk2/ShellPkg/Include/Library/
DShellLib.h837 OUT CHAR16 **Param
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLib/
DUefiShellLib.c2550 OUT CHAR16 **Param in ShellCommandLineCheckDuplicate() argument
2567 if (Param != NULL) { in ShellCommandLineCheckDuplicate()
2568 *Param = NULL; in ShellCommandLineCheckDuplicate()
2569 *Param = StrnCatGrow(Param, NULL, ((SHELL_PARAM_PACKAGE*)Node1)->Name, 0); in ShellCommandLineCheckDuplicate()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dcompile.c2392 case Param: in compiler_nameop()
2407 case Param: in compiler_nameop()
2424 case Param: in compiler_nameop()
2439 case Param: in compiler_nameop()
3072 case Param: in compiler_visit_expr()
3100 case Param: in compiler_visit_expr()
3242 case Param: in compiler_handle_subscr()
3327 case Param: in compiler_simple_slice()
Dsymtable.c1316 assert(arg->v.Name.ctx == Param || in symtable_visit_params()
DPython-ast.c2933 case Param: in ast2obj_expr_context()
5796 *out = Param; in obj2ast_expr_context()
Dast.c761 name = Name(id, Param, LINENO(ch), ch->n_col_offset, in ast_for_arguments()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dcompile.c2412 case Param: in compiler_nameop()
2427 case Param: in compiler_nameop()
2444 case Param: in compiler_nameop()
2459 case Param: in compiler_nameop()
3092 case Param: in compiler_visit_expr()
3120 case Param: in compiler_visit_expr()
3262 case Param: in compiler_handle_subscr()
3347 case Param: in compiler_simple_slice()
Dsymtable.c1318 assert(arg->v.Name.ctx == Param || in symtable_visit_params()
DPython-ast.c2950 case Param: in ast2obj_expr_context()
5813 *out = Param; in obj2ast_expr_context()
Dast.c761 name = Name(id, Param, LINENO(ch), ch->n_col_offset, in ast_for_arguments()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
DPython-ast.h12 Param=6 } expr_context_ty; enumerator
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
DPython-ast.h12 Param=6 } expr_context_ty; enumerator