Lines Matching refs:sections_
64 : sections_(sections) { in MyMemoryManager()
74 (*sections_)[SectionName.str()] = make_tuple(Addr, Size); in allocateCodeSection()
83 (*sections_)[SectionName.str()] = make_tuple(Addr, Size); in allocateDataSection()
86 map<string, tuple<uint8_t *, uintptr_t>> *sections_; member in ebpf::MyMemoryManager
132 for (auto section : sections_) in ~BPFModule()
223 sections_p = rw_engine_enabled_ ? §ions_ : &tmp_sections; in finalize()
263 sections_[fname] = make_tuple(tmp_p, size); in finalize()
270 for (auto section : sections_) in finalize()
290 auto section = sections_.find(function_names_[id]); in function_start()
291 if (section == sections_.end()) in function_start()
297 auto section = sections_.find(FN_PREFIX + name); in function_start()
298 if (section == sections_.end()) in function_start()
383 auto section = sections_.find(function_names_[id]); in function_size()
384 if (section == sections_.end()) in function_size()
390 auto section = sections_.find(FN_PREFIX + name); in function_size()
391 if (section == sections_.end()) in function_size()
398 auto section = sections_.find("license"); in license()
399 if (section == sections_.end()) in license()
406 auto section = sections_.find("version"); in kern_version()
407 if (section == sections_.end()) in kern_version()
565 if (!sections_.empty()) { in load_b()
602 if (!sections_.empty()) { in load_c()
625 if (!sections_.empty()) { in load_string()