Lines Matching refs:pfd

147    void testFind(const PassFailData& pfd,
150 void testFindExpectingPass(const PassFailData& pfd,
153 void testFindExpectingFail(const PassFailData& pfd,
156 void testLastXmit(const PassFailData& pfd,
159 void testLastXmitExpectingPass(const PassFailData& pfd,
162 void testLastXmitExpectingFail(const PassFailData& pfd,
166 void testComputeXvt(const PassFailData& pfd,
173 void testGetSVHealth(const PassFailData& pfd,
479 const PassFailData& pfd = *citp; in createAndDump() local
480 testFind(pfd,oas,testFramework); in createAndDump()
489 const PassFailData& pfd = *citp; in createAndDump() local
490 testComputeXvt(pfd,oas,testFramework); in createAndDump()
501 const PassFailData& pfd = *citp; in createAndDump() local
502 testGetSVHealth(pfd,oas,testFramework); in createAndDump()
512 const PassFailData& pfd = *citp; in createAndDump() local
513 testLastXmit(pfd,oas,testFramework); in createAndDump()
691 testFind(const PassFailData& pfd, in testFind() argument
695 if (pfd.expectPass) in testFind()
697 testFindExpectingPass(pfd,oas,testFramework); in testFind()
701 testFindExpectingFail(pfd,oas,testFramework); in testFind()
708 testFindExpectingPass(const PassFailData& pfd, in testFindExpectingPass() argument
714 const OrbAlm* p = oas.find(pfd.subjID, pfd.testTime, pfd.considerEff); in testFindExpectingPass()
717 if (p->beginValid==pfd.expBV) in testFindExpectingPass()
725 << printTime(pfd.expBV,"%02H:%02M:%02S") in testFindExpectingPass()
751 testFindExpectingFail(const PassFailData& pfd, in testFindExpectingFail() argument
757 const OrbAlm* p = oas.find(pfd.subjID,pfd.testTime,pfd.considerEff); in testFindExpectingFail()
771 testLastXmit(const PassFailData& pfd, in testLastXmit() argument
775 if (pfd.expectPass) in testLastXmit()
777 testLastXmitExpectingPass(pfd,oas,testFramework); in testLastXmit()
781 testLastXmitExpectingFail(pfd,oas,testFramework); in testLastXmit()
789 testLastXmitExpectingPass(const PassFailData& pfd, in testLastXmitExpectingPass() argument
796 const OrbAlm* p = oas.find(pfd.subjID, pfd.testTime); in testLastXmitExpectingPass()
800 if (ct==pfd.expBV) in testLastXmitExpectingPass()
808 << printTime(pfd.expBV,"%02m/%02d/%4Y %02H:%02M:%02S") in testLastXmitExpectingPass()
835 testLastXmitExpectingFail(const PassFailData& pfd, in testLastXmitExpectingFail() argument
843 const OrbAlm* p = oas.find(pfd.subjID,pfd.testTime); in testLastXmitExpectingFail()
994 PassFailData pfd(sidTest,testTime,true); // 1 in setUpLNAV() local
995 pfList.push_back(pfd); in setUpLNAV()
998 pfd = PassFailData(sidTest, testTime,true); in setUpLNAV()
999 pfList.push_back(pfd); in setUpLNAV()
1002 pfd = PassFailData(sidTest, testTime,true,begValFirstAlmPRN1); in setUpLNAV()
1003 pfList.push_back(pfd); in setUpLNAV()
1006 pfd = PassFailData(sidTest, testTime,true,begValFirstAlmPRN1); in setUpLNAV()
1007 pfList.push_back(pfd); in setUpLNAV()
1010 pfd = PassFailData(sidTest, testTime,true,begValSecondAlmPRN1); in setUpLNAV()
1011 pfList.push_back(pfd); in setUpLNAV()
1014 pfd = PassFailData(sidTest, testTime,true); in setUpLNAV()
1015 pfList.push_back(pfd); in setUpLNAV()
1018 pfd = PassFailData(sidTest, testTime,false,begValFirstAlmPRN1); in setUpLNAV()
1019 pfList.push_back(pfd); in setUpLNAV()
1022 pfd = PassFailData(sidTest, testTime,false,begValSecondAlmPRN1); in setUpLNAV()
1023 pfList.push_back(pfd); in setUpLNAV()
1038 pfd = PassFailData(sidTest, testTime,true,xmitID); in setUpLNAV()
1039 pfList.push_back(pfd); in setUpLNAV()
1042 pfd = PassFailData(sidTest, testTime,true,begValFirstAlmPRN1,xmitID); in setUpLNAV()
1043 pfList.push_back(pfd); in setUpLNAV()
1046 pfd = PassFailData(sidTest, testTime,true,xmitID); in setUpLNAV()
1047 pfList.push_back(pfd); in setUpLNAV()
1050 pfd = PassFailData(sidTest, testTime,false,begValFirstAlmPRN1,xmitID); in setUpLNAV()
1051 pfList.push_back(pfd); in setUpLNAV()
1054 pfd = PassFailData(sidTest, testTime,false,begValSecondAlmPRN1,xmitID); in setUpLNAV()
1055 pfList.push_back(pfd); in setUpLNAV()
1059 pfd = PassFailData(sidTest, testTime,true,begValFirstAlmPRN1,xmitID_32); in setUpLNAV()
1060 pfList.push_back(pfd); in setUpLNAV()
1069 pfd = PassFailData(subjID_5,testTime,true,begValidPRN5); in setUpLNAV()
1070 pfList.push_back(pfd); in setUpLNAV()
1086 pfd = PassFailData(subjID_1,testTime,true,lastXmit); in setUpLNAV()
1087 lastXmitList.push_back(pfd); in setUpLNAV()
1091 pfd = PassFailData(subjID_1,testTime,true,lastXmit); in setUpLNAV()
1092 lastXmitList.push_back(pfd); in setUpLNAV()
1094 pfd = PassFailData(xmitID_32,testTime,false); in setUpLNAV()
1095 lastXmitList.push_back(pfd); in setUpLNAV()
1270 testComputeXvt(const PassFailData& pfd, in testComputeXvt() argument
1275 TUCATCH(rv = oas.computeXvt(pfd.subjID, pfd.testTime)); in testComputeXvt()
1293 testGetSVHealth(const PassFailData& pfd, in testGetSVHealth() argument
1298 TUCATCH(rv = oas.getSVHealth(pfd.subjID, pfd.testTime)); in testGetSVHealth()