Lines Matching refs:cs_temp
494 codeSection cs_temp; in readCodeSections() local
495 cs_temp.type = BPF_PROG_TYPE_UNSPEC; in readCodeSections()
505 cs_temp.expected_attach_type = getExpectedAttachType(name); in readCodeSections()
512 cs_temp.type = ptype; in readCodeSections()
513 cs_temp.name = name; in readCodeSections()
515 ret = readSectionByIdx(elfFile, i, cs_temp.data); in readCodeSections()
524 cs_temp.prog_def = pd[i]; in readCodeSections()
530 if (cs_temp.data.size() > 0 && i < entries) { in readCodeSections()
535 ret = readSectionByIdx(elfFile, i + 1, cs_temp.rel_data); in readCodeSections()
541 if (cs_temp.data.size() > 0) { in readCodeSections()
542 cs.push_back(std::move(cs_temp)); in readCodeSections()