HomeSort by relevance Sort by last modified time
    Searched refs:Param1 (Results 1 - 25 of 64) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/Library/BaseFspApiLib/IA32/
DispatchExecute.c 21 IN VOID *Param1
29 @param[in] Param1 The first parameter to pass to 32bit code.
36 IN UINT64 Param1
43 Status = EntryFunc ((VOID *)(UINTN)Param1);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/BootScriptSaveOnS3SaveStateThunk/IA32/
DispatchExecute.c 22 @param Param1 The first parameter to pass to 32bit code
31 IN UINT64 Param1,
39 Status = EntryFunc ((VOID *)(UINTN)Param1, (VOID *)(UINTN)Param2);
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel3CommandsLib/
Cls.c 37 CONST CHAR16 *Param1;
74 Param1 = ShellCommandLineGetRawValue(Package, 1);
75 if (Param1 == NULL) {
84 if (ShellStrToUintn(Param1) > 7 || StrLen(Param1) > 1 || !ShellIsDecimalDigitCharacter(*Param1)) {
85 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PARAM_INV), gShellLevel3HiiHandle, L"cls", Param1);
88 switch (ShellStrToUintn(Param1)) {
114 ForeColor = (~ShellStrToUintn(Param1)) & 0xF;
Alias.c 92 CONST CHAR16 *Param1;
124 Param1 = ShellCommandLineGetRawValue(Package, 1);
154 Status = gEfiShellProtocol->SetAlias(Param1, NULL, TRUE, FALSE);
159 Status = gEfiShellProtocol->SetAlias(CleanParam2, Param1, FALSE, ShellCommandLineGetFlag(Package, L"-v"));
173 ConstAliasVal = gEfiShellProtocol->GetAlias(Param1, &Volatile);
175 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PARAM_INV), gShellLevel3HiiHandle, L"alias", Param1);
178 if (ShellCommandIsOnAliasList(Param1)) {
181 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_ALIAS_OUTPUT), gShellLevel3HiiHandle, !Volatile?L' ':L'*', Param1, ConstAliasVal);
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDriver1CommandsLib/
Unload.c 68 CONST CHAR16 *Param1;
107 Param1 = ShellCommandLineGetRawValue(Package, 1);
108 if (Param1 != NULL) {
109 Status = ShellConvertStringToUint64(Param1, &Value, TRUE, FALSE);
113 if (EFI_ERROR(Status) || Param1 == NULL || TheHandle == NULL){
114 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_INV_HANDLE), gShellDriver1HiiHandle, L"unload", Param1);
Disconnect.c 93 CONST CHAR16 *Param1;
148 Param1 = ShellCommandLineGetRawValue(Package, 1);
151 ShellConvertStringToUint64(Param1, &Intermediate1, TRUE, FALSE);
152 Handle1 = Param1!=NULL?ConvertHandleIndexToHandle((UINTN)Intermediate1):NULL;
158 if (Param1 != NULL && Handle1 == NULL) {
159 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_INV_HANDLE), gShellDriver1HiiHandle, L"disconnect", Param1);
172 ASSERT(Param1 != NULL);
OpenInfo.c 160 CONST CHAR16 *Param1;
197 Param1 = ShellCommandLineGetRawValue(Package, 1);
198 Status = ShellConvertStringToUint64(Param1, &Intermediate, TRUE, FALSE);
199 if (EFI_ERROR(Status) || Param1 == NULL || ConvertHandleIndexToHandle((UINTN)Intermediate) == NULL){
200 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_INV_HANDLE), gShellDriver1HiiHandle, L"openinfo", Param1);
210 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_INV_HANDLE), gShellDriver1HiiHandle, L"openinfo", Param1);
Connect.c 420 CONST CHAR16 *Param1;
501 Param1 = ShellCommandLineGetRawValue(Package, 1);
505 if (Param1 != NULL) {
506 Status = ShellConvertStringToUint64(Param1, &Intermediate, TRUE, FALSE);
509 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_INV_HANDLE), gShellDriver1HiiHandle, L"connect", Param1);
528 if (Param1 != NULL && Handle1 == NULL){
529 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_INV_HANDLE), gShellDriver1HiiHandle, L"connect", Param1);
  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/Library/BaseFspApiLib/X64/
DispatchExecute.c 63 @param[in] Param1 The first parameter to pass to 32bit code
72 IN UINT64 Param1,
82 @param[in] Param1 The first parameter to pass to 32bit code.
89 IN UINT64 Param1
101 Status = AsmExecute32BitCode (Function, Param1, 0, &mGdt);
  /external/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h 163 /// Type, DefineMatcher, ParamType1, Param1, ParamType2, Param2) { ... }
170 /// Param1, Param2: the parameters passed to the function; their types
176 #define AST_MATCHER_P2(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
178 AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
181 #define AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, \
187 matcher_##DefineMatcher##OverloadId##Matcher(ParamType1 const &A##Param1, \
189 : Param1(A##Param1), Param2(A##Param2) {} \
196 ParamType1 const Param1; \
201 ParamType1 const &Param1, ParamType2 const &Param2) {
    [all...]
ASTMatchersInternal.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h 163 /// Type, DefineMatcher, ParamType1, Param1, ParamType2, Param2) { ... }
170 /// Param1, Param2: the parameters passed to the function; their types
176 #define AST_MATCHER_P2(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
178 AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
181 #define AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, \
187 matcher_##DefineMatcher##OverloadId##Matcher(ParamType1 const &A##Param1, \
189 : Param1(A##Param1), Param2(A##Param2) {} \
196 ParamType1 const Param1; \
201 ParamType1 const &Param1, ParamType2 const &Param2) {
    [all...]
ASTMatchersInternal.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h 163 /// Type, DefineMatcher, ParamType1, Param1, ParamType2, Param2) { ... }
170 /// Param1, Param2: the parameters passed to the function; their types
176 #define AST_MATCHER_P2(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
178 AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
181 #define AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, \
187 matcher_##DefineMatcher##OverloadId##Matcher(ParamType1 const &A##Param1, \
189 : Param1(A##Param1), Param2(A##Param2) {} \
196 ParamType1 const Param1; \
201 ParamType1 const &Param1, ParamType2 const &Param2) {
    [all...]
ASTMatchersInternal.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h 163 /// Type, DefineMatcher, ParamType1, Param1, ParamType2, Param2) { ... }
170 /// Param1, Param2: the parameters passed to the function; their types
176 #define AST_MATCHER_P2(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
178 AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
181 #define AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, \
187 matcher_##DefineMatcher##OverloadId##Matcher(ParamType1 const &A##Param1, \
189 : Param1(A##Param1), Param2(A##Param2) {} \
196 ParamType1 const Param1; \
201 ParamType1 const &Param1, ParamType2 const &Param2) {
    [all...]
ASTMatchersInternal.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h 163 /// Type, DefineMatcher, ParamType1, Param1, ParamType2, Param2) { ... }
170 /// Param1, Param2: the parameters passed to the function; their types
176 #define AST_MATCHER_P2(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
178 AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
181 #define AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, \
187 matcher_##DefineMatcher##OverloadId##Matcher(ParamType1 const &A##Param1, \
189 : Param1(A##Param1), Param2(A##Param2) {} \
196 ParamType1 const Param1; \
201 ParamType1 const &Param1, ParamType2 const &Param2) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h 163 /// Type, DefineMatcher, ParamType1, Param1, ParamType2, Param2) { ... }
170 /// Param1, Param2: the parameters passed to the function; their types
176 #define AST_MATCHER_P2(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
178 AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
181 #define AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, \
187 matcher_##DefineMatcher##OverloadId##Matcher(ParamType1 const &A##Param1, \
189 : Param1(A##Param1), Param2(A##Param2) {} \
196 ParamType1 const Param1; \
201 ParamType1 const &Param1, ParamType2 const &Param2) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h 163 /// Type, DefineMatcher, ParamType1, Param1, ParamType2, Param2) { ... }
170 /// Param1, Param2: the parameters passed to the function; their types
176 #define AST_MATCHER_P2(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
178 AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
181 #define AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, \
187 matcher_##DefineMatcher##OverloadId##Matcher(ParamType1 const &A##Param1, \
189 : Param1(A##Param1), Param2(A##Param2) {} \
196 ParamType1 const Param1; \
201 ParamType1 const &Param1, ParamType2 const &Param2) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h 163 /// Type, DefineMatcher, ParamType1, Param1, ParamType2, Param2) { ... }
170 /// Param1, Param2: the parameters passed to the function; their types
176 #define AST_MATCHER_P2(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
178 AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
181 #define AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, \
187 matcher_##DefineMatcher##OverloadId##Matcher(ParamType1 const &A##Param1, \
189 : Param1(A##Param1), Param2(A##Param2) {} \
196 ParamType1 const Param1; \
201 ParamType1 const &Param1, ParamType2 const &Param2) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h 163 /// Type, DefineMatcher, ParamType1, Param1, ParamType2, Param2) { ... }
170 /// Param1, Param2: the parameters passed to the function; their types
176 #define AST_MATCHER_P2(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
178 AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, ParamType2, \
181 #define AST_MATCHER_P2_OVERLOAD(Type, DefineMatcher, ParamType1, Param1, \
187 matcher_##DefineMatcher##OverloadId##Matcher(ParamType1 const &A##Param1, \
189 : Param1(A##Param1), Param2(A##Param2) {} \
196 ParamType1 const Param1; \
201 ParamType1 const &Param1, ParamType2 const &Param2) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/BootScriptSaveOnS3SaveStateThunk/X64/
DispatchExecute.c 77 @param Param1 The first parameter to pass to 32bit code
87 IN UINT64 Param1,
97 @param Param1 The first parameter to pass to 32bit code
106 IN UINT64 Param1,
145 Param1,
  /external/regex-re2/re2/
variadic_function.h 10 template <typename Result, typename Param0, typename Param1, typename Arg,
11 Result (*Func)(Param0, Param1, const Arg* const [], int count)>
16 Result operator()(Param0 p0, Param1 p1) const {
20 Result operator()(Param0 p0, Param1 p1, const Arg& a0) const {
25 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1) const {
30 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1,
36 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1,
42 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1,
48 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1,
54 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Cd.c 42 CONST CHAR16 *Param1;
89 Param1 = ShellCommandLineGetRawValue(Package, 1);
90 if (Param1 == NULL) {
102 Param1Copy = CatSPrint(NULL, L"%s", Param1, NULL);

Completed in 1316 milliseconds

1 2 3