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 | 619 status_t status, const ConstantExpression* cycleEnd, in CheckAcyclicStatus() argument 621 : status(status), cycleEnd(cycleEnd), lastReference(lastReference) { in CheckAcyclicStatus() 622 CHECK(cycleEnd == nullptr || status != OK); in CheckAcyclicStatus() 623 CHECK((cycleEnd == nullptr) == (lastReference == nullptr)); in CheckAcyclicStatus() 655 if (err.cycleEnd == nullptr) return err; in checkAcyclic() 665 if (err.cycleEnd == this) { in checkAcyclic() 668 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
|