Searched refs:stats (Results 1 – 9 of 9) sorted by relevance
/systemd-251/src/udev/ |
D | udev-node.c | 70 struct stat stats; in node_symlink() local 77 if (lstat(slink, &stats) >= 0) { in node_symlink() 78 if (!S_ISLNK(stats.st_mode)) in node_symlink() 606 struct stat stats; in udev_node_apply_permissions_impl() local 612 if (fstat(node_fd, &stats) < 0) in udev_node_apply_permissions_impl() 619 apply_mode = mode != MODE_INVALID && (stats.st_mode & 0777) != (mode & 0777); in udev_node_apply_permissions_impl() 620 apply_uid = uid_is_valid(uid) && stats.st_uid != uid; in udev_node_apply_permissions_impl() 621 apply_gid = gid_is_valid(gid) && stats.st_gid != gid; in udev_node_apply_permissions_impl() 630 uid_is_valid(uid) ? uid : stats.st_uid, in udev_node_apply_permissions_impl() 631 gid_is_valid(gid) ? gid : stats.st_gid, in udev_node_apply_permissions_impl() [all …]
|
D | udevadm-info.c | 310 struct stat stats; in cleanup_dir() local 314 if (fstatat(dirfd(dir), dent->d_name, &stats, AT_SYMLINK_NOFOLLOW) < 0) in cleanup_dir() 316 if ((stats.st_mode & mask) != 0) in cleanup_dir() 318 if (S_ISDIR(stats.st_mode)) { in cleanup_dir() 361 struct stat stats; in cleanup_dirs_after_db_cleanup() local 365 if (fstatat(dirfd(dir), dent->d_name, &stats, AT_SYMLINK_NOFOLLOW) < 0) in cleanup_dirs_after_db_cleanup() 367 if (S_ISDIR(stats.st_mode)) { in cleanup_dirs_after_db_cleanup()
|
/systemd-251/tools/ |
D | update-dbus-docs.py | 147 def check_documented(document, declarations, stats): argument 150 stats['total'] += len(items) 170 stats['missing'] += len(missing) 196 def subst_output(document, programlisting, stats): argument 223 missing = check_documented(document, declarations, stats) 287 stats = collections.Counter() 291 subst_output(xml, pl, stats) 304 return dict(stats=stats, modified=(out_text != src)) 327 stats = {page.split('/')[-1] : process(page) for page in opts.pages} variable 330 mlen = max(len(page) for page in stats) [all …]
|
/systemd-251/src/basic/ |
D | path-util.c | 714 struct stat stats; in paths_check_timestamp() local 717 if (stat(*i, &stats) < 0) in paths_check_timestamp() 720 u = timespec_load(&stats.st_mtim); in paths_check_timestamp()
|
D | cgroup-util.c | 1785 struct stat stats; in cg_get_owner() local 1794 r = stat(f, &stats); in cg_get_owner() 1798 *ret_uid = stats.st_uid; in cg_get_owner()
|
/systemd-251/shell-completion/bash/ |
D | networkctl | 35 [STANDALONE]='-a --all -h --help --version --no-pager --no-legend -s --stats -l --full'
|
/systemd-251/src/network/ |
D | networkctl.c | 284 struct rtnl_link_stats stats; member 573 else if (sd_netlink_message_read(m, IFLA_STATS, sizeof info->stats, &info->stats) >= 0) in decode_link() 1427 … info->has_stats64 ? (void*) &info->stats64.val_name : (void*) &info->stats.val_name); \
|
/systemd-251/src/basic/linux/ |
D | pkt_sched.h | 244 struct tc_sfqred_stats stats; member
|
/systemd-251/ |
D | NEWS | 4612 devices, as well as a new "--stats" switch for showing device
|