Lines Matching refs:cs_temp
350 codeSection cs_temp; in readCodeSections() local
351 cs_temp.type = BPF_PROG_TYPE_UNSPEC; in readCodeSections()
360 cs_temp.type = ptype; in readCodeSections()
361 cs_temp.name = name; in readCodeSections()
363 ret = readSectionByIdx(elfFile, i, cs_temp.data); in readCodeSections()
372 cs_temp.prog_def = pd[i]; in readCodeSections()
379 if (cs_temp.data.size() > 0 && i < entries) { in readCodeSections()
383 if (isRelSection(cs_temp, name)) { in readCodeSections()
384 ret = readSectionByIdx(elfFile, i + 1, cs_temp.rel_data); in readCodeSections()
390 if (cs_temp.data.size() > 0) { in readCodeSections()
391 cs.push_back(std::move(cs_temp)); in readCodeSections()