Lines Matching refs:cs_temp
405 codeSection cs_temp; in readCodeSections() local
406 cs_temp.type = BPF_PROG_TYPE_UNSPEC; in readCodeSections()
418 cs_temp.type = ptype; in readCodeSections()
419 cs_temp.name = name; in readCodeSections()
421 ret = readSectionByIdx(elfFile, i, cs_temp.data); in readCodeSections()
430 cs_temp.prog_def = pd[i]; in readCodeSections()
437 if (cs_temp.data.size() > 0 && i < entries) { in readCodeSections()
441 if (isRelSection(cs_temp, name)) { in readCodeSections()
442 ret = readSectionByIdx(elfFile, i + 1, cs_temp.rel_data); in readCodeSections()
448 if (cs_temp.data.size() > 0) { in readCodeSections()
449 cs.push_back(std::move(cs_temp)); in readCodeSections()