Searched refs:by_procfs (Results 1 – 1 of 1) sorted by relevance
/systemd-251/src/basic/ |
D | xattr-util.c | 31 bool by_procfs = false; in getxattr_at_malloc() local 70 … by_procfs = true; /* fgetxattr() is not going to work, go via /proc/ link right-away */ in getxattr_at_malloc() 90 … n = by_procfs ? getxattr(FORMAT_PROC_FD_PATH(fd), name, v, l) : fgetxattr(fd, name, v, l); in getxattr_at_malloc() 93 if (by_procfs || path) in getxattr_at_malloc() 96 … by_procfs = true; /* Might be an O_PATH fd, try again via /proc/ link */ in getxattr_at_malloc() 111 … n = by_procfs ? getxattr(FORMAT_PROC_FD_PATH(fd), name, NULL, 0) : fgetxattr(fd, name, NULL, 0); in getxattr_at_malloc() 216 bool by_procfs = false; in listxattr_at_malloc() local 246 by_procfs = true; in listxattr_at_malloc() 266 … n = by_procfs ? listxattr(FORMAT_PROC_FD_PATH(fd), v, l) : flistxattr(fd, v, l); in listxattr_at_malloc() 269 if (by_procfs || path) in listxattr_at_malloc() [all …]
|