Lines Matching refs:EC
430 if (auto EC = Section.getName(FoundName))
431 return EC;
443 if (std::error_code EC = BinOrErr.getError())
444 return EC;
451 if (std::error_code EC
452 return EC;
471 if (auto EC = NamesSection.getError())
472 return EC;
475 if (auto EC = CoverageSection.getError())
476 return EC;
479 if (std::error_code EC = CoverageSection->getContents(CoverageMapping))
480 return EC;
481 if (std::error_code EC = ProfileNames.create(*NamesSection))
482 return EC;
496 std::error_code EC;
499 EC = loadTestingFormat(ObjectBuffer->getBuffer(), ProfileNames, Coverage,
502 EC = loadBinaryFormat(ObjectBuffer->getMemBufferRef(), ProfileNames,
504 if (EC)
505 return EC;
508 EC = readCoverageMappingData<uint32_t, support::endianness::little>(
511 EC = readCoverageMappingData<uint32_t, support::endianness::big>(
514 EC = readCoverageMappingData<uint64_t, support::endianness::little>(
517 EC = readCoverageMappingData<uint64_t, support::endianness::big>(
521 if (EC)
522 return EC;