Lines Matching defs:SecName
308 static Error dumpSectionToFile(StringRef SecName, StringRef Filename,
312 if (Sec->CanonicalName == SecName) {
327 SecName.str().c_str());
360 static Expected<Section &> findSection(StringRef SecName, Object &O) {
362 std::tie(SegName, SecName) = SecName.split(",");
372 [SecName](const std::unique_ptr<Section> &Sec) {
373 return Sec->Sectname == SecName;
378 SecName.str().c_str());
380 assert(FoundSec->get()->CanonicalName == (SegName + "," + SecName).str());