Home
last modified time | relevance | path

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

/system/bpf/libbpf_android/
DLoader.cpp473 vector<string> mapNames; in createMaps() local
503 ret = getSectionSymNames(elfFile, "maps", mapNames); in createMaps()
508 for (int i = 0; i < (int)mapNames.size(); i++) { in createMaps()
510 ALOGI("skipping map %s which requires bpfloader min ver 0x%05x\n", mapNames[i].c_str(), in createMaps()
517 ALOGI("skipping map %s which requires bpfloader max ver 0x%05x\n", mapNames[i].c_str(), in createMaps()
525 mapNames[i].c_str(), kvers, md[i].min_kver); in createMaps()
532 mapNames[i].c_str(), kvers, md[i].max_kver); in createMaps()
539 string(BPF_FS_PATH) + prefix + "map_" + fname + "_" + string(mapNames[i]); in createMaps()
547 ALOGD("bpf_create_map reusing map %s, ret: %d\n", mapNames[i].c_str(), fd.get()); in createMaps()
571 fd.reset(bpf_create_map(type, mapNames[i].c_str(), md[i].key_size, md[i].value_size, in createMaps()
[all …]