/bionic/libc/bionic/ |
H A D | strchr.cpp | 33 char* strchr(const char* p, int ch) { function
|
H A D | sysinfo.cpp | 74 char* p = strchr(buf, ' ');
|
H A D | ndk_cruft.cpp | 318 return strchr(str, ch);
|
H A D | system_properties.cpp | 429 const char *sep = strchr(remaining_name, '.');
|
/bionic/libstdc++/include/ |
H A D | cstring | 50 using ::strchr;
|
/bionic/libc/upstream-openbsd/lib/libc/net/ |
H A D | inet_pton.c | 85 if ((pch = strchr(digits, ch)) != NULL) { 146 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL) 147 pch = strchr((xdigits = xdigits_u), ch);
|
/bionic/libc/dns/resolv/ |
H A D | herror.c | 81 strchr((const void *)(c), *(const char *)(const void *)(c)) : NULL)
|
H A D | res_init.c | 126 #define ISSORTMASK(ch) (strchr(sort_mask, ch) != NULL) 325 if ((cp = strchr(statp->defdname, '\n')) != NULL) 450 (cp = strchr(buf, '.')) != NULL) 467 cp = strchr(cp, '.') + 1; /* we know there is one */
|
/bionic/libc/upstream-openbsd/lib/libc/gen/ |
H A D | fnmatch.c | 115 if ((colon = strchr(pattern, ':')) == NULL || colon[1] != ']') { 335 strendseg = strchr(string, '/'); 337 strendseg = strchr(string, '\0'); 340 strendseg = strchr(string, '\0');
|
H A D | exec.c | 150 if (strchr(name, '/')) {
|
/bionic/libc/upstream-netbsd/lib/libc/gen/ |
H A D | popen.c | 93 flags = strchr(xtype, 'e') ? O_CLOEXEC : 0; 94 if (strchr(xtype, '+')) {
|
/bionic/libc/upstream-freebsd/lib/libc/stdlib/ |
H A D | getopt_long.c | 225 if ((has_equal = strchr(current_argv, '=')) != NULL) { 415 (place[1] == '\0' && strchr(options, '-') == NULL)) { 487 } else if (*place != ':' && strchr(options, *place) != NULL) 500 (oli = strchr(options, optchar)) == NULL) {
|
H A D | realpath.c | 111 p = strchr(left, '/');
|
/bionic/libc/arch-arm64/generic/bionic/ |
H A D | strchr.S | 2 strchr - find a character in a string 77 ENTRY(strchr) function 154 END(strchr)
|
/bionic/libc/arch-mips/ |
H A D | mips.mk | 16 bionic/strchr.cpp \
|
/bionic/libc/arch-mips64/ |
H A D | mips64.mk | 17 bionic/strchr.cpp \
|
/bionic/libc/arch-x86_64/ |
H A D | x86_64.mk | 12 bionic/strchr.cpp \
|
/bionic/libc/dns/nameser/ |
H A D | ns_name.c | 234 if ((cp = strchr(src, ']')) == NULL) { 254 else if ((cp = strchr(digits, c)) != NULL) { 257 (cp = strchr(digits, c)) == NULL) { 263 (cp = strchr(digits, c)) == NULL) {
|
/bionic/libc/dns/net/ |
H A D | base64.c | 237 pos = strchr(Base64, ch);
|
H A D | getnameinfo.c | 315 p = strchr(hp->h_name, '.');
|
/bionic/libc/arch-arm/ |
H A D | arm.mk | 8 bionic/strchr.cpp \
|
/bionic/libc/include/ |
H A D | string.h | 54 extern char* strchr(const char *, int) __purefunc; 320 char* strchr(const char *s, int c) { function
|
/bionic/libc/arch-x86/atom/string/ |
H A D | sse2-strchr-atom.S | 90 ENTRY (strchr) function 391 END (strchr)
|
/bionic/tests/ |
H A D | string_test.cpp | 404 EXPECT_TRUE(strchr(buf, '\0') == (buf + strlen(s))); 412 // Verify that strchr finds the first occurrence of 'a' in a string 415 // and continue to verify that strchr can find the first occurrence 420 EXPECT_EQ(&str[i], strchr(str, 'a')); 425 TEST(string, strchr) { 451 ASSERT_TRUE(strchr(state.ptr1, seek_char) == expected); 1350 ASSERT_EQ(NULL, strchr(reinterpret_cast<char*>(buf), search_value)); 1351 ASSERT_EQ(reinterpret_cast<char*>(&buf[len-1]), strchr(reinterpret_cast<char*>(buf), '\0')); 1354 ASSERT_EQ(reinterpret_cast<char*>(&buf[0]), strchr(reinterpret_cast<char*>(buf), search_value)); 1357 ASSERT_EQ(reinterpret_cast<char*>(&buf[len-2]), strchr(reinterpret_cas [all...] |
H A D | fortify_test.cpp | 234 ASSERT_FORTIFY(printf("%s", strchr(myfoo.a, 'a'))); 414 ASSERT_FORTIFY(printf("%s", strchr(buf, 'a')));
|