Lines Matching refs:progPinLoc
1001 string progPinLoc = string(BPF_FS_PATH) + lookupPinSubdir(pin_subdir, prefix) + "prog_" + in loadCodeSections() local
1003 if (access(progPinLoc.c_str(), F_OK) == 0) { in loadCodeSections()
1004 fd.reset(retrieveProgram(progPinLoc.c_str())); in loadCodeSections()
1005 ALOGD("New bpf prog load reusing prog %s, ret: %d (%s)", progPinLoc.c_str(), fd.get(), in loadCodeSections()
1071 AT_FDCWD, progPinLoc.c_str(), RENAME_NOREPLACE); in loadCodeSections()
1074 ALOGE("rename %s %s -> %d [%d:%s]", createLoc.c_str(), progPinLoc.c_str(), ret, in loadCodeSections()
1079 ret = bpfFdPin(fd, progPinLoc.c_str()); in loadCodeSections()
1082 ALOGE("create %s -> %d [%d:%s]", progPinLoc.c_str(), ret, err, strerror(err)); in loadCodeSections()
1086 if (chmod(progPinLoc.c_str(), 0440)) { in loadCodeSections()
1088 ALOGE("chmod %s 0440 -> [%d:%s]", progPinLoc.c_str(), err, strerror(err)); in loadCodeSections()
1091 if (chown(progPinLoc.c_str(), (uid_t)cs[i].prog_def->uid, in loadCodeSections()
1094 ALOGE("chown %s %d %d -> [%d:%s]", progPinLoc.c_str(), cs[i].prog_def->uid, in loadCodeSections()
1104 ALOGI("prog %s id %d", progPinLoc.c_str(), progId); in loadCodeSections()