Lines Matching refs:resolved
1151 _cleanup_free_ char *resolved = NULL;
1177 r = specifier_printf(i->argument, specifier_table, NULL, &resolved);
1181 log_debug("Copying tree \"%s\" to \"%s\".", resolved, i->path);
1182 r = copy_tree(resolved, i->path, false);
1193 if (stat(resolved, &a) < 0)
1194 return log_error_errno(errno, "stat(%s) failed: %m", resolved);
1348 r = specifier_printf(i->argument, specifier_table, NULL, &resolved);
1353 r = symlink(resolved, i->path);
1360 return log_error_errno(errno, "symlink(%s, %s) failed: %m", resolved, i->path);
1363 if (r < 0 || !streq(resolved, x)) {
1367 r = symlink_atomic(resolved, i->path);
1371 return log_error_errno(r, "symlink(%s, %s) failed: %m", resolved, i->path);