/device/linaro/bootloader/edk2/MdeModulePkg/Core/Pei/Dependency/ |
D | Dependency.c | 49 if (Stack->Operator == NULL) { in IsPpiInstalled() 58 CopyMem(&PpiGuid, Stack->Operator, sizeof(EFI_GUID)); in IsPpiInstalled() 134 StackPtr->Operator = (VOID *) Iterator; in PeimDispatchReadiness() 136 …DEBUG ((DEBUG_DISPATCH, " PUSH GUID(%g) = %a\n", StackPtr->Operator, IsPpiInstalled (PeiServices,… in PeimDispatchReadiness() 176 (StackPtr-1)->Operator = NULL; in PeimDispatchReadiness() 181 (StackPtr-1)->Operator = NULL; in PeimDispatchReadiness() 213 (StackPtr-1)->Operator = NULL; in PeimDispatchReadiness() 241 StackPtr->Operator = NULL; in PeimDispatchReadiness()
|
D | Dependency.h | 29 VOID *Operator; member
|
/device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/ |
D | Dependency.c | 180 BOOLEAN Operator; in SmmIsSchedulable() local 185 Operator = FALSE; in SmmIsSchedulable() 275 Status = PopBool (&Operator); in SmmIsSchedulable() 287 Status = PushBool ((BOOLEAN)(Operator && Operator2)); in SmmIsSchedulable() 296 Status = PopBool (&Operator); in SmmIsSchedulable() 308 Status = PushBool ((BOOLEAN)(Operator || Operator2)); in SmmIsSchedulable() 317 Status = PopBool (&Operator); in SmmIsSchedulable() 323 Status = PushBool ((BOOLEAN)(!Operator)); in SmmIsSchedulable() 350 Status = PopBool (&Operator); in SmmIsSchedulable() 355 DEBUG ((DEBUG_DISPATCH, " RESULT = %a\n", Operator ? "TRUE" : "FALSE")); in SmmIsSchedulable() [all …]
|
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Dispatcher/ |
D | Dependency.c | 218 BOOLEAN Operator; in CoreIsSchedulable() local 223 Operator = FALSE; in CoreIsSchedulable() 326 Status = PopBool (&Operator); in CoreIsSchedulable() 338 Status = PushBool ((BOOLEAN)(Operator && Operator2)); in CoreIsSchedulable() 347 Status = PopBool (&Operator); in CoreIsSchedulable() 359 Status = PushBool ((BOOLEAN)(Operator || Operator2)); in CoreIsSchedulable() 368 Status = PopBool (&Operator); in CoreIsSchedulable() 374 Status = PushBool ((BOOLEAN)(!Operator)); in CoreIsSchedulable() 401 Status = PopBool (&Operator); in CoreIsSchedulable() 406 DEBUG ((DEBUG_DISPATCH, " RESULT = %a\n", Operator ? "TRUE" : "FALSE")); in CoreIsSchedulable() [all …]
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
D | Expression.py | 146 def Eval(Operator, Oprand1, Oprand2 = None): argument 149 if Operator not in ["==", "!=", ">=", "<=", ">", "<", "in", "not in"] and \ 151 raise BadExpression(ERR_STRING_EXPR % Operator) 161 if Operator in ["!", "NOT", "not"]: 163 raise BadExpression(ERR_STRING_EXPR % Operator) 166 if Operator in ["+", "-"] and (type(True) in [type(Oprand1), type(Oprand2)]): 171 if Operator == "==": 175 elif Operator == "!=": 180 raise BadExpression(ERR_RELCMP_STR_OTHERS % Operator) 182 …if Operator in ["==", "!=", ">=", "<=", ">", "<"] and set((TypeDict[type(Oprand1)], TypeDict[type(… [all …]
|
D | RangeExpression.py | 181 def GetOperatorObject(Operator): argument 182 if Operator == '>': 184 elif Operator == '>=': 186 elif Operator == '<': 188 elif Operator == '<=': 190 elif Operator == '==': 192 elif Operator == '^': 255 def EvalRange(self, Operator, Oprand): argument 257 operatorobj = GetOperatorObject(Operator) 348 def Eval(self, Operator, Oprand1, Oprand2 = None): argument [all …]
|
/device/mediatek/wembley-sepolicy/r_non_plat/ |
D | appdomain.te | 6 # Operator: Whitney bring up
|
D | adbd.te | 8 # Operator: Migration
|
D | mediacodec.te | 93 # Operator: Whitney bring up 98 # Operator: Whitney SQC
|
D | system_server.te | 47 # Operator: Whitney bring up
|
/device/mediatek/wembley-sepolicy/non_plat/ |
D | appdomain.te | 6 # Operator: Whitney bring up
|
D | adbd.te | 8 # Operator: Migration
|
D | mediacodec.te | 93 # Operator: Whitney bring up 98 # Operator: Whitney SQC
|
D | system_server.te | 47 # Operator: Whitney bring up
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/ |
D | ExpressionValidate.py | 110 for Operator in OpList: 111 if not self.Token[self.Index:].startswith(Operator): 114 self.Index += len(Operator) 117 if (Operator in LetterOp and (Char == '_' or Char.isalnum())) \ 118 or (Operator in OpMap and OpMap[Operator] == Char): 119 self.Index -= len(Operator)
|
/device/mediatek/wembley-sepolicy/prebuilts/api/26.0/plat_private/ |
D | bootanim.te | 28 # Operator: Whitney bring up
|
D | system_server.te | 16 # Operator: Whitney bring up
|
/device/mediatek/wembley-sepolicy/plat_private/ |
D | bootanim.te | 29 # Operator: Whitney bring up
|
D | mtkbootanimation.te | 73 # Operator: Whitney bring up
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/ |
D | CodeFragment.py | 63 self.Operator = Op
|
D | CodeFragmentCollector.py | 422 print str(asign.StartPos) + asign.Name + asign.Operator + asign.Value
|
D | c.py | 134 …IdAE = DataClass.IdentifierClass(-1, ae.Operator, '', ae.Name, ae.Value, DataClass.MODEL_IDENTIFIE…
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | tokenize.py | 81 Operator = group(r"\*\*=?", r">>=?", r"<<=?", r"<>", r"!=", variable 88 Funny = group(Operator, Bracket, Special)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | tokenize.py | 82 Operator = group(r"\*\*=?", r">>=?", r"<<=?", r"<>", r"!=", variable 89 Funny = group(Operator, Bracket, Special)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/ |
D | tokenize.py | 85 Operator = group(r"\*\*=?", r">>=?", r"<<=?", r"<>", r"!=", variable 92 Funny = group(Operator, Bracket, Special)
|