Searched refs:strncmp (Results 1 – 7 of 7) sorted by relevance
/systemd-251/src/fundamental/ |
D | string-util-fundamental.h | 16 #define strncmp(a, b, n) StrnCmp((a), (b), (n)) macro 25 #define strneq(a, b, n) (strncmp((a), (b), (n)) == 0)
|
D | string-util-fundamental.c | 209 r = strncmp(a, b, aa - a); in strverscmp_improved() 220 r = strncmp(a, b, MIN(aa - a, bb - b)); in strverscmp_improved()
|
/systemd-251/src/shared/ |
D | efi-api.c | 499 if (strncmp(de->d_name, "Boot", 4) != 0) in efi_get_boot_options()
|
/systemd-251/src/udev/ |
D | udev-builtin-path_id.c | 192 if (strncmp(phy_count, "1", 2) != 0) in handle_scsi_sas()
|
/systemd-251/src/libsystemd/sd-bus/ |
D | sd-bus.c | 643 if (strncmp(*p, key, l) != 0) in parse_address_key() 4091 if (strncmp(path_pos, template_pos, length)) in sd_bus_path_decode_many() 4113 strncmp(sep - length, template_pos, length)) in sd_bus_path_decode_many()
|
/systemd-251/src/boot/ |
D | bootctl.c | 649 return strncmp(a, b, x); in compare_product()
|
/systemd-251/docs/ |
D | CODING_STYLE.md | 633 - Please use `streq()` and `strneq()` instead of `strcmp()`, `strncmp()` where
|