Searched refs:cycleEnd (Results 1 – 4 of 4) sorted by relevance
/system/tools/hidl/ |
D | Type.cpp | 219 Type::CheckAcyclicStatus::CheckAcyclicStatus(status_t status, const Type* cycleEnd) in CheckAcyclicStatus() argument 220 : status(status), cycleEnd(cycleEnd) { in CheckAcyclicStatus() 221 CHECK(cycleEnd == nullptr || status != OK); in CheckAcyclicStatus() 239 if (err.cycleEnd == nullptr) return err; in topologicalOrder() 247 if (err.cycleEnd == this) { in topologicalOrder() 259 if (err.cycleEnd == nullptr) return err; in topologicalOrder() 264 if (err.cycleEnd == this) { in topologicalOrder()
|
D | ConstantExpression.cpp | 625 status_t status, const ConstantExpression* cycleEnd, in CheckAcyclicStatus() argument 627 : status(status), cycleEnd(cycleEnd), lastReference(lastReference) { in CheckAcyclicStatus() 628 CHECK(cycleEnd == nullptr || status != OK); in CheckAcyclicStatus() 629 CHECK((cycleEnd == nullptr) == (lastReference == nullptr)); in CheckAcyclicStatus() 661 if (err.cycleEnd == nullptr) return err; in checkAcyclic() 671 if (err.cycleEnd == this) { in checkAcyclic() 674 return CheckAcyclicStatus(err.status, err.cycleEnd, in checkAcyclic()
|
D | ConstantExpression.h | 85 CheckAcyclicStatus(status_t status, const ConstantExpression* cycleEnd = nullptr, 92 const ConstantExpression* cycleEnd; member
|
D | Type.h | 113 CheckAcyclicStatus(status_t status, const Type* cycleEnd = nullptr); 119 const Type* cycleEnd; member
|