Home
last modified time | relevance | path

Searched refs:cs_temp (Results 1 – 1 of 1) sorted by relevance

/system/bpf/libbpf_android/
DLoader.cpp292 codeSection cs_temp; in readCodeSections() local
293 cs_temp.type = BPF_PROG_TYPE_UNSPEC; in readCodeSections()
301 cs_temp.type = ptype; in readCodeSections()
302 cs_temp.name = name; in readCodeSections()
304 ret = readSectionByIdx(elfFile, i, cs_temp.data); in readCodeSections()
310 if (cs_temp.data.size() > 0 && i < entries) { in readCodeSections()
314 if (isRelSection(cs_temp, name)) { in readCodeSections()
315 ret = readSectionByIdx(elfFile, i + 1, cs_temp.rel_data); in readCodeSections()
321 if (cs_temp.data.size() > 0) { in readCodeSections()
322 cs.push_back(cs_temp); in readCodeSections()