Searched defs:dot (Results 1 - 6 of 6) sorted by relevance

/systemd/src/basic/
H A Dhostname-util.c74 * by Linux (c.f. dns_name_is_valid()). Trailing dot is allowed if
83 bool dot; local
93 for (p = s, dot = true; *p; p++) {
95 if (dot)
98 dot = true;
104 dot = false;
108 if (dot && (n_dots < 2 || !allow_trailing_dot))
121 bool dot; local
125 for (p = s, d = s, dot = true; *p; p++) {
127 if (dot)
[all...]
H A Dcgroup-util.c1680 const char *dot; local
1682 dot = strrchr(p, '.');
1683 if (dot) {
1685 size_t l = dot - p;
/systemd/src/libsystemd/sd-bus/
H A Dbus-internal.c91 bool dot, found_dot = false; local
96 for (dot = true, q = p; *q; q++)
98 if (dot)
101 found_dot = dot = true;
108 (!dot && *q >= '0' && *q <= '9') ||
114 dot = false;
120 if (dot)
131 bool dot, found_dot = false, unique; local
138 for (dot = true, q = unique ? p+1 : p; *q; q++)
140 if (dot)
[all...]
/systemd/src/analyze/
H A Danalyze.c65 static enum dot { enum
1133 static int dot(sd_bus *bus, char* patterns[]) { function
1192 log_notice("-- You probably want to process this output with graphviz' dot tool.\n"
1193 "-- Try a shell pipeline like 'systemd-analyze dot | dot -Tsvg > systemd.svg'!\n");
1310 " dot Output dependency graph in dot(1) format\n"
1473 else if (streq(argv[optind], "dot"))
1474 r = dot(bus, argv+optind+1);
/systemd/src/core/
H A Dload-fragment.c3922 const char *dot; local
3927 dot = strchr(i, '.');
3928 lvalue = dot ? dot + 1 : i;
3929 prefix_len = dot-i;
3931 if (dot)
/systemd/src/systemctl/
H A Dsystemctl.c338 const char *dot; local
340 dot = strrchr(u->id, '.');
341 if (!dot)
344 if (!strv_find(arg_types, dot+1))
1283 const char *dot; local
1285 dot = strrchr(u->path, '.');
1286 if (!dot)
1289 if (!strv_find(arg_types, dot+1))

Completed in 60 milliseconds