dot               196 lib/services/systemd.c         const char *dot = strrchr(name, '.');
dot               198 lib/services/systemd.c         if (dot && (!strcmp(dot, ".service")
dot               199 lib/services/systemd.c                     || !strcmp(dot, ".socket")
dot               200 lib/services/systemd.c                     || !strcmp(dot, ".mount")
dot               201 lib/services/systemd.c                     || !strcmp(dot, ".timer")
dot               202 lib/services/systemd.c                     || !strcmp(dot, ".path"))) {
dot               203 lib/services/systemd.c             return dot;
dot               212 lib/services/systemd.c     const char *dot = NULL;
dot               227 lib/services/systemd.c     dot = systemd_unit_extension(name);
dot               229 lib/services/systemd.c     if (dot) {
dot               230 lib/services/systemd.c         if (dot != name && *(dot-1) == '@') {
dot               233 lib/services/systemd.c             if (asprintf(&s, "%.*spacemaker%s", (int) (dot-name), name, dot) == -1) {