Home
last modified time | relevance | path

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

/system/bpf/libbpf_android/
DLoader.cpp414 vector<string> mapNames; in createMaps() local
423 ret = getSectionSymNames(elfFile, "maps", mapNames); in createMaps()
426 for (int i = 0; i < (int)mapNames.size(); i++) { in createMaps()
432 mapPinLoc = string(BPF_FS_PATH) + "map_" + fname + "_" + string(mapNames[i]); in createMaps()
435 ALOGD("bpf_create_map reusing map %s, ret: %d\n", mapNames[i].c_str(), fd.get()); in createMaps()
438 … fd.reset(bpf_create_map(md[i].type, mapNames[i].c_str(), md[i].key_size, md[i].value_size, in createMaps()
440 ALOGD("bpf_create_map name %s, ret: %d\n", mapNames[i].c_str(), fd.get()); in createMaps()
507 vector<string> mapNames; in applyMapRelo() local
509 int ret = getSectionSymNames(elfFile, "maps", mapNames); in applyMapRelo()
524 for (int j = 0; j < (int)mapNames.size(); j++) { in applyMapRelo()
[all …]