Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dmemmem.c35 void *memmem(const void *haystack, size_t n, const void *needle, size_t m) in memmem() argument
42 const unsigned char* x = (const unsigned char*) needle; in memmem()
61 return memchr(haystack, ((unsigned char*)needle)[0], n); in memmem()
Dndk_cruft.cpp234 wchar_t* wcswcs(wchar_t* haystack, wchar_t* needle) { in wcswcs() argument
235 return wcsstr(haystack, needle); in wcswcs()
/bionic/linker/
Dlinker_utils.cpp65 const char* needle = dir.c_str(); in file_is_in_dir() local
67 size_t needle_len = strlen(needle); in file_is_in_dir()
69 return strncmp(haystack, needle, needle_len) == 0 && in file_is_in_dir()
75 const char* needle = dir.c_str(); in file_is_under_dir() local
77 size_t needle_len = strlen(needle); in file_is_under_dir()
79 return strncmp(haystack, needle, needle_len) == 0 && in file_is_under_dir()
/bionic/tests/
Dsearch_test.cpp30 int needle; in TEST() local
33 needle = 2; in TEST()
34 ASSERT_EQ(nullptr, lfind(&needle, xs, &x_size, sizeof(xs[0]), int_cmp)); in TEST()
38 ASSERT_EQ(&xs[0], lsearch(&needle, xs, &x_size, sizeof(xs[0]), int_cmp)); in TEST()
43 ASSERT_EQ(&xs[0], lfind(&needle, xs, &x_size, sizeof(xs[0]), int_cmp)); in TEST()
47 ASSERT_EQ(&xs[0], lsearch(&needle, xs, &x_size, sizeof(xs[0]), int_cmp)); in TEST()
Ddlfcn_test.cpp31 #define ASSERT_SUBSTR(needle, haystack) \ argument
32 ASSERT_PRED_FORMAT2(::testing::IsSubstring, needle, haystack)
Ddlext_test.cpp48 #define ASSERT_SUBSTR(needle, haystack) \ argument
49 ASSERT_PRED_FORMAT2(::testing::IsSubstring, needle, haystack)
/bionic/libc/include/
Dstring.h83 extern char* strcasestr(const char *haystack, const char *needle) __purefunc;