Lines Matching defs:iNode
226 uint32_t iNode;
2361 "Intermediate certificate (#%u) is not marked as a CA", pThis->v.iNode);
2371 "Hit max path length at node #%u", pThis->v.iNode);
2388 pThis->v.iNode, pTbsCert->T3.fKeyUsage);
2417 "Node #%u has an unknown critical extension: %s", pThis->v.iNode, pCur->ExtnId.szObjId);
2499 uint32_t iNode = pThis->v.iNode = 1; /* We count to cNode (inclusive). Same a validation tree depth. */
2513 if (!rtCrX509CpvWorkValidPolicyTree(pThis, iNode, pNode, fSelfIssued)) /* Step 6.1.3.d-f */
2521 Assert(iNode == pThis->v.cNodes);
2533 && !rtCrX509CpvSoakUpPolicyMappings(pThis, iNode, pTbsCert->T3.pPolicyMappings)) /* Step 6.1.4.a-b */
2572 pThis->v.iNode = ++iNode;
2787 static PRTCRX509CERTPATHNODE rtCrX509CertPathsGetPathNodeByIndexes(PRTCRX509CERTPATHSINT pThis, uint32_t iPath, uint32_t iNode)
2793 if (iNode <= pNode->uDepth)
2795 uint32_t uCertDepth = pNode->uDepth - iNode;
2808 RTDECL(PCRTCRX509CERTIFICATE) RTCrX509CertPathsGetPathNodeCert(RTCRX509CERTPATHS hCertPaths, uint32_t iPath, uint32_t iNode)
2822 PRTCRX509CERTPATHNODE pNode = rtCrX509CertPathsGetPathNodeByIndexes(pThis, iPath, iNode);