Lines Matching refs:progPinLoc
997 string progPinLoc = string(BPF_FS_PATH) + lookupPinSubdir(pin_subdir, prefix) + "prog_" + in loadCodeSections() local
999 if (access(progPinLoc.c_str(), F_OK) == 0) { in loadCodeSections()
1000 fd.reset(retrieveProgram(progPinLoc.c_str())); in loadCodeSections()
1001 ALOGD("New bpf prog load reusing prog %s, ret: %d (%s)", progPinLoc.c_str(), fd.get(), in loadCodeSections()
1053 AT_FDCWD, progPinLoc.c_str(), RENAME_NOREPLACE); in loadCodeSections()
1056 ALOGE("rename %s %s -> %d [%d:%s]", createLoc.c_str(), progPinLoc.c_str(), ret, in loadCodeSections()
1061 ret = bpfFdPin(fd, progPinLoc.c_str()); in loadCodeSections()
1064 ALOGE("create %s -> %d [%d:%s]", progPinLoc.c_str(), ret, err, strerror(err)); in loadCodeSections()
1068 if (chmod(progPinLoc.c_str(), 0440)) { in loadCodeSections()
1070 ALOGE("chmod %s 0440 -> [%d:%s]", progPinLoc.c_str(), err, strerror(err)); in loadCodeSections()
1073 if (chown(progPinLoc.c_str(), (uid_t)cs[i].prog_def->uid, in loadCodeSections()
1076 ALOGE("chown %s %d %d -> [%d:%s]", progPinLoc.c_str(), cs[i].prog_def->uid, in loadCodeSections()
1086 ALOGI("prog %s id %d", progPinLoc.c_str(), progId); in loadCodeSections()