Home
last modified time | relevance | path

Searched refs:strcmp (Results 1 – 25 of 107) sorted by relevance

12345

/bionic/libc/bionic/
Dlocale.cpp119 return (strcmp(locale_name, "") == 0 || in __is_supported_locale()
120 strcmp(locale_name, "C") == 0 || in __is_supported_locale()
121 strcmp(locale_name, "C.UTF-8") == 0 || in __is_supported_locale()
122 strcmp(locale_name, "en_US.UTF-8") == 0 || in __is_supported_locale()
123 strcmp(locale_name, "POSIX") == 0); in __is_supported_locale()
Dwctype.cpp153 if (!strcmp(properties[i], property)) { in wctype()
168 if (strcmp(name, "tolower") == 0) return wctrans_tolower; in wctrans()
169 if (strcmp(name, "toupper") == 0) return wctrans_toupper; in wctrans()
DNetdClient.cpp42 if (getuid() == 0 && strcmp(basename(getprogname()), "netd") == 0) { in netdClientInitImpl()
Derror.cpp80 if (last_line == line && last_file != nullptr && strcmp(last_file, file) == 0) { in error_at_line()
Diconv.cpp84 if (strcmp(suffix, "//IGNORE") == 0) { in __parse_encoding()
86 } else if (strcmp(suffix, "//TRANSLIT") == 0) { in __parse_encoding()
/bionic/libc/upstream-openbsd/lib/libc/string/
Dstrcmp.c41 strcmp(const char *s1, const char *s2) in strcmp() function
48 DEF_STRONG(strcmp);
Dstrcoll.c43 return (strcmp(s1, s2)); in strcoll()
/bionic/tests/
Dmntent_test.cpp32 if (strcmp(entry.mnt_fsname, "proc") == 0 && strcmp(entry.mnt_dir, "/proc") == 0) { in TEST()
Dgetauxval_test.cpp52 if (strcmp(u.machine, "aarch64") == 0) { in TEST()
Dnet_if_test.cpp53 if (strcmp(it->if_name, "lo") == 0) saw_lo = true; in TEST()
Dmalloc_iterate_test.cpp99 if (strcmp(name, "[anon:libc_malloc]") == 0 || strncmp(name, "[anon:scudo:", 12) == 0 || in VerifyPtrs()
196 if (strcmp(name, "[anon:libc_malloc]") != 0 && strncmp(name, "[anon:scudo:", 12) != 0 && in TEST()
/bionic/libc/dns/net/
Dgetservent.c129 if (strcmp(s->s_name, name) == 0 && (proto == NULL || strcmp(s->s_proto, proto) == 0)) { in getservbyname()
145 if (s->s_port == port && (proto == NULL || strcmp(s->s_proto, proto) == 0)) { in getservbyport()
/bionic/libc/arch-arm64/mte/bionic/
Dstrcmp.c31 #define strcmp strcmp_mte macro
/bionic/libc/arch-arm64/
Dstatic_function_dispatch.S38 FUNCTION_DELEGATE(strcmp, strcmp_mte)
Ddynamic_function_dispatch.cpp64 DEFINE_IFUNC_FOR(strcmp) { in DEFINE_IFUNC_FOR() argument
/bionic/linker/
Dlinker_translate_path.cpp69 if (strcmp(base_name, soname) == 0) { in translateSystemPathToApexPath()
Dlinker_logger.cpp97 g_greylist_disabled = (strcmp(greylist_disabled.Get(), "true") == 0); in ResetState()
/bionic/libc/arch-arm/
Dstatic_function_dispatch.S45 FUNCTION_DELEGATE(strcmp, strcmp_generic)
/bionic/libc/upstream-openbsd/lib/libc/stdlib/
Dgetsubopt.c89 if (!strcmp(suboptarg, *tokens)) in getsubopt()
/bionic/benchmarks/linker_relocation/gen/
Dliblinker_reloc_bench_009.S22 CALL(strcmp)
Dliblinker_reloc_bench_150.S26 CALL(strcmp)
Dliblinker_reloc_bench_099.S55 CALL(strcmp)
/bionic/libc/arch-x86/
Dstatic_function_dispatch.S44 FUNCTION_DELEGATE(strcmp, strcmp_generic)
/bionic/libc/upstream-netbsd/lib/libc/regex/
Dregerror.c216 if (strcmp(r->name, preg->re_endp) == 0) in regatoi()
/bionic/tests/headers/posix/
Dstring_h.c48 FUNCTION(strcmp, int (*f)(const char*, const char*)); in string_h()

12345