Home
last modified time | relevance | path

Searched refs:strncmp (Results 1 – 7 of 7) sorted by relevance

/systemd-251/src/fundamental/
Dstring-util-fundamental.h16 #define strncmp(a, b, n) StrnCmp((a), (b), (n)) macro
25 #define strneq(a, b, n) (strncmp((a), (b), (n)) == 0)
Dstring-util-fundamental.c209 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/
Defi-api.c499 if (strncmp(de->d_name, "Boot", 4) != 0) in efi_get_boot_options()
/systemd-251/src/udev/
Dudev-builtin-path_id.c192 if (strncmp(phy_count, "1", 2) != 0) in handle_scsi_sas()
/systemd-251/src/libsystemd/sd-bus/
Dsd-bus.c643 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/
Dbootctl.c649 return strncmp(a, b, x); in compare_product()
/systemd-251/docs/
DCODING_STYLE.md633 - Please use `streq()` and `strneq()` instead of `strcmp()`, `strncmp()` where