Searched refs:safety_check (Results 1 – 5 of 5) sorted by relevance
/external/ipsec-tools/src/racoon/ |
D | privsep.c | 73 static int safety_check(struct privsep_com_msg *, int i); 343 if (safety_check(combuf, 0) != 0) in privsep_init() 390 if (safety_check(combuf, 0) != 0) in privsep_init() 472 if (safety_check(combuf, 0) != 0) in privsep_init() 513 if (safety_check(combuf, 0) != 0) in privsep_init() 515 if (safety_check(combuf, 1) != 0) in privsep_init() 517 if (safety_check(combuf, 2) != 0) in privsep_init() 519 if (safety_check(combuf, 3) != 0) in privsep_init() 546 if (safety_check(combuf, 0) != 0) in privsep_init() 550 if (safety_check(combuf, 1) != 0) in privsep_init() [all …]
|
/external/v8/src/compiler/ |
D | common-operator.cc | 127 const Operator* op, IsSafetyCheck safety_check) { in MarkAsSafetyCheck() argument 130 if (info.is_safety_check == safety_check) return op; in MarkAsSafetyCheck() 131 return Branch(info.hint, safety_check); in MarkAsSafetyCheck() 134 if (p.is_safety_check() == safety_check) return op; in MarkAsSafetyCheck() 137 return DeoptimizeIf(p.kind(), p.reason(), p.feedback(), safety_check); in MarkAsSafetyCheck() 139 return DeoptimizeUnless(p.kind(), p.reason(), p.feedback(), safety_check); in MarkAsSafetyCheck()
|
D | common-operator.h | 559 IsSafetyCheck safety_check); in NON_EXPORTED_BASE()
|
/external/v8/src/compiler/backend/ |
D | instruction-selector.h | 389 bool NeedsPoisoning(IsSafetyCheck safety_check) const;
|
D | instruction-selector.cc | 3344 bool InstructionSelector::NeedsPoisoning(IsSafetyCheck safety_check) const { in NeedsPoisoning() 3349 return safety_check != IsSafetyCheck::kNoSafetyCheck; in NeedsPoisoning() 3351 return safety_check == IsSafetyCheck::kCriticalSafetyCheck; in NeedsPoisoning()
|