Searched refs:strcaseeq (Results 1 - 8 of 8) sorted by relevance
/systemd/src/basic/ |
H A D | hostname-util.c | 155 return strcaseeq(hostname, "localhost") || 156 strcaseeq(hostname, "localhost.") || 157 strcaseeq(hostname, "localdomain.") || 158 strcaseeq(hostname, "localdomain") || 172 strcaseeq(hostname, "gateway") || 173 strcaseeq(hostname, "gateway.");
|
H A D | parse-util.c | 37 if (streq(v, "1") || strcaseeq(v, "yes") || strcaseeq(v, "y") || strcaseeq(v, "true") || strcaseeq(v, "t") || strcaseeq(v, "on")) 39 else if (streq(v, "0") || strcaseeq(v, "no") || strcaseeq(v, "n") || strcaseeq(v, "false") || strcaseeq(v, "f") || strcaseeq( [all...] |
H A D | calendarspec.c | 732 if (strcaseeq(p, "minutely")) { 737 } else if (strcaseeq(p, "hourly")) { 745 } else if (strcaseeq(p, "daily")) { 756 } else if (strcaseeq(p, "monthly")) { 770 } else if (strcaseeq(p, "annually") || 771 strcaseeq(p, "yearly") || 772 strcaseeq(p, "anually") /* backwards compatibility */ ) { 790 } else if (strcaseeq(p, "weekly")) { 804 } else if (strcaseeq(p, "quarterly")) { 831 } else if (strcaseeq( [all...] |
H A D | string-util.h | 43 #define strcaseeq(a,b) (strcasecmp((a),(b)) == 0) macro
|
/systemd/src/resolve/ |
H A D | dns-type.c | 232 if (strcaseeq(s, "IN")) 234 else if (strcaseeq(s, "ANY"))
|
H A D | resolved-dns-trust-anchor.c | 218 if (!strcaseeq(class, "IN")) { 223 if (strcaseeq(type, "DS")) { 273 } else if (strcaseeq(type, "DNSKEY")) {
|
H A D | resolved-dns-rr.c | 610 return strcaseeq(a->hinfo.cpu, b->hinfo.cpu) && 611 strcaseeq(a->hinfo.os, b->hinfo.os);
|
/systemd/src/udev/scsi_id/ |
H A D | scsi_id.c | 220 if (str1 && strcaseeq(str1, "VENDOR")) { 229 if (str1 && strcaseeq(str1, "MODEL")) { 240 if (str1 && strcaseeq(str1, "OPTIONS")) {
|
Completed in 76 milliseconds