Lines Matching defs:where
1029 const char *where, *check, *what;
1050 where = prefix_roota(dest, "/etc/localtime");
1051 r = readlink_malloc(where, &q);
1069 r = unlink(where);
1071 log_error_errno(errno, "Failed to remove existing timezone info %s in container: %m", where);
1076 if (symlink(what, where) < 0) {
1081 r = userns_lchown(where, 0, 0);
1089 const char *where = NULL;
1098 where = prefix_roota(dest, "/etc/resolv.conf");
1100 r = copy_file("/etc/resolv.conf", where, O_TRUNC|O_NOFOLLOW, 0644, 0);
1111 "Failed to copy /etc/resolv.conf to %s: %m", where);
1115 r = userns_lchown(where, 0, 0);
2134 static int mount_device(const char *what, const char *where, const char *directory, bool rw) {
2141 assert(where);
2147 p = strjoina(where, directory);
2149 p = where;
2197 const char *where,
2203 assert(where);