Home
last modified time | relevance | path

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

12345

/bionic/libc/bionic/
Dlocale.cpp123 return (strcmp(locale_name, "") == 0 || in __is_supported_locale()
124 strcmp(locale_name, "C") == 0 || in __is_supported_locale()
125 strcmp(locale_name, "C.UTF-8") == 0 || in __is_supported_locale()
126 strcmp(locale_name, "en_US.UTF-8") == 0 || in __is_supported_locale()
127 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()
Dlibc_init_static.cpp237 if (strcmp("sync", options_str) == 0) { in get_environment_memtag_setting()
239 } else if (strcmp("async", options_str) == 0) { in get_environment_memtag_setting()
241 } else if (strcmp("off", options_str) == 0) { in get_environment_memtag_setting()
Diconv.cpp84 if (strcmp(suffix, "//IGNORE") == 0) { in __parse_encoding()
86 } else if (strcmp(suffix, "//TRANSLIT") == 0) { in __parse_encoding()
/bionic/tests/
D__cxa_demangle_test.cpp53 if (p && !strcmp(p, "\x6<-0x1.cecececececececececececececep+11983")) { in TEST()
55 } else if (p && !strcmp(p, "\x6<-0x1.cecececececececececececececep+11983L>")) { in TEST()
Dgetauxval_test.cpp54 if (strcmp(u.machine, "aarch64") == 0) { in TEST()
Dnet_if_test.cpp53 if (strcmp(it->if_name, "lo") == 0) saw_lo = true; in TEST()
Dsyslog_test.cpp81 if (!strcmp(c->c_name, name)) return c->c_val; in by_name()
/bionic/tests/libs/
Dstack_tagging_helper.cpp344 if (strcmp(argv[1], "vfork_execve") == 0) { in main()
349 if (strcmp(argv[1], "vfork_execl") == 0) { in main()
354 if (strcmp(argv[1], "vfork_exit") == 0) { in main()
359 if (strcmp(argv[1], "longjmp") == 0) { in main()
364 if (strcmp(argv[1], "longjmp_sigaltstack") == 0) { in main()
369 if (strcmp(argv[1], "android_mallopt") == 0) { in main()
374 if (strcmp(argv[1], "exception_cleanup") == 0) { in main()
/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/upstream-openbsd/lib/libc/string/
Dstrcoll.c43 return (strcmp(s1, s2)); in strcoll()
/bionic/libc/arch-arm/
Dstatic_function_dispatch.S45 FUNCTION_DELEGATE(strcmp, strcmp_generic)
/bionic/linker/
Dlinker_translate_path.cpp60 auto comparator = [name](auto p) { return strcmp(name, p[0]) == 0; }; in translateSystemPathToApexPath()
/bionic/libc/arch-arm64/
Dstatic_function_dispatch.S45 FUNCTION_DELEGATE(strcmp, __strcmp_aarch64)
/bionic/libc/arch-riscv64/
Dstatic_function_dispatch.S45 FUNCTION_DELEGATE(strcmp, strcmp_gc)
/bionic/libc/upstream-openbsd/lib/libc/stdlib/
Dgetsubopt.c89 if (!strcmp(suboptarg, *tokens)) in getsubopt()
/bionic/libc/arch-x86/
Dstatic_function_dispatch.S44 FUNCTION_DELEGATE(strcmp, strcmp_generic)
/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/tzcode/
Dbionic.cpp55 if (!strcmp(buf, "GMT")) { in __bionic_get_system_tz()
197 if (strcmp(this_id, olson_id) == 0) { in __bionic_open_tzdata_path()
/bionic/libc/upstream-netbsd/lib/libc/regex/
Dregerror.c178 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