Symbol: strends
drivers/gpio/gpiolib-shared.c
185
if (!strends(prop->name, "-gpios") &&
drivers/gpio/gpiolib-shared.c
186
!strends(prop->name, "-gpio") &&
drivers/gpio/gpiolib-shared.c
243
if (strends(prop->name, "gpios"))
drivers/gpio/gpiolib-shared.c
245
else if (strends(prop->name, "gpio"))
drivers/of/property.c
1347
if (!strends(prop_name, suffix))
drivers/of/property.c
1436
if (strends(prop_name, ",nr-gpios"))
lib/tests/string_kunit.c
709
KUNIT_EXPECT_TRUE(test, strends("foo-bar", "bar"));
lib/tests/string_kunit.c
710
KUNIT_EXPECT_TRUE(test, strends("foo-bar", "-bar"));
lib/tests/string_kunit.c
711
KUNIT_EXPECT_TRUE(test, strends("foobar", "foobar"));
lib/tests/string_kunit.c
712
KUNIT_EXPECT_TRUE(test, strends("foobar", ""));
lib/tests/string_kunit.c
713
KUNIT_EXPECT_FALSE(test, strends("bar", "foobar"));
lib/tests/string_kunit.c
714
KUNIT_EXPECT_FALSE(test, strends("", "foo"));
lib/tests/string_kunit.c
715
KUNIT_EXPECT_FALSE(test, strends("foobar", "ba"));
lib/tests/string_kunit.c
716
KUNIT_EXPECT_TRUE(test, strends("", ""));
scripts/dtc/checks.c
1521
if (strends(prop->name, ",nr-gpios"))
scripts/dtc/checks.c
1524
return strends(prop->name, "-gpios") ||
scripts/dtc/checks.c
1526
strends(prop->name, "-gpio") ||
scripts/dtc/checks.c
1565
if (!strends(prop->name, "gpio"))
scripts/dtc/checks.c
706
if (!strends(prop->name, "-names"))
scripts/mod/modpost.c
1503
if (strends(object, ".thinlto-native.o"))
scripts/mod/modpost.c
1597
if (!strends(modname, ".o")) {
scripts/mod/modpost.c
1680
if (strends(fname, "\n"))