Lines Matching refs:progPinLoc
706 string progPinLoc = BPF_FS_PATH; in loadCodeSections() local
707 progPinLoc += prefix; in loadCodeSections()
708 progPinLoc += "prog_"; in loadCodeSections()
709 progPinLoc += fname; in loadCodeSections()
710 progPinLoc += '_'; in loadCodeSections()
711 progPinLoc += name; in loadCodeSections()
712 if (access(progPinLoc.c_str(), F_OK) == 0) { in loadCodeSections()
713 fd = retrieveProgram(progPinLoc.c_str()); in loadCodeSections()
714 ALOGD("New bpf prog load reusing prog %s, ret: %d (%s)\n", progPinLoc.c_str(), fd, in loadCodeSections()
745 ret = bpf_obj_pin(fd, progPinLoc.c_str()); in loadCodeSections()
748 if (chown(progPinLoc.c_str(), (uid_t)cs[i].prog_def->uid, in loadCodeSections()
753 if (chmod(progPinLoc.c_str(), 0440)) return -errno; in loadCodeSections()