Lines Matching refs:mapNames
387 vector<string> mapNames; in createMaps() local
395 ret = getMapNames(elfFile, mapNames); in createMaps()
398 mapFds.resize(mapNames.size()); in createMaps()
400 for (int i = 0; i < (int)mapNames.size(); i++) { in createMaps()
405 mapPinLoc = string(BPF_FS_PATH) + "map_" + fname + "_" + string(mapNames[i]); in createMaps()
408 ALOGD("bpf_create_map reusing map %s, ret: %d\n", mapNames[i].c_str(), fd); in createMaps()
411 fd = bpf_create_map(md[i].type, mapNames[i].c_str(), md[i].key_size, md[i].value_size, in createMaps()
413 ALOGD("bpf_create_map name %s, ret: %d\n", mapNames[i].c_str(), fd); in createMaps()
476 vector<string> mapNames; in applyMapRelo() local
478 int ret = getMapNames(elfFile, mapNames); in applyMapRelo()
493 for (int j = 0; j < (int)mapNames.size(); j++) { in applyMapRelo()
494 if (!mapNames[j].compare(symName)) { in applyMapRelo()