Searched defs:st_path (Results 1 - 1 of 1) sorted by relevance

/systemd/src/libsystemd/sd-daemon/
H A Dsd-daemon.c160 struct stat st_path; local
162 if (stat(path, &st_path) < 0) {
171 st_path.st_dev == st_fd.st_dev &&
172 st_path.st_ino == st_fd.st_ino;
190 struct stat st_path; local
192 if (stat(path, &st_path) < 0) {
200 if (S_ISREG(st_fd.st_mode) && S_ISREG(st_path.st_mode))
202 st_path.st_dev == st_fd.st_dev &&
203 st_path.st_ino == st_fd.st_ino;
204 else if (S_ISCHR(st_fd.st_mode) && S_ISCHR(st_path
[all...]

Completed in 13 milliseconds