Lines Matching refs:escaped
148 _cleanup_free_ char *escaped;
150 escaped = cescape(m->unit);
151 if (!escaped) {
156 fprintf(f, "SCOPE=%s\n", escaped); /* We continue to call this "SCOPE=" because it is internal only, and we want to stay compatible with old files */
163 _cleanup_free_ char *escaped;
165 escaped = cescape(m->service);
166 if (!escaped) {
170 fprintf(f, "SERVICE=%s\n", escaped);
174 _cleanup_free_ char *escaped;
176 escaped = cescape(m->root_directory);
177 if (!escaped) {
181 fprintf(f, "ROOT=%s\n", escaped);
360 _cleanup_free_ char *escaped = NULL;
363 escaped = unit_name_escape(m->name);
364 if (!escaped)
367 scope = strjoin("machine-", escaped, ".scope", NULL);