Searched defs:strstr (Results 1 - 13 of 13) sorted by relevance

/external/syslinux/com32/lib/
H A Dstrstr.c2 * strstr.c
7 char *strstr(const char *haystack, const char *needle) function
/external/libcxx/include/
H A Dstring.h46 const char* strstr(const char* s1, const char* s2);
47 char* strstr( char* s1, const char* s2);
102 char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
104 const char* strstr(const char* __s1, const char* __s2) {return __libcpp_strstr(__s1, __s2);} function
106 char* strstr( char* __s1, const char* __s2) {return __libcpp_strstr(__s1, __s2);} function
/external/valgrind/coregrind/m_demangle/
H A Dvg_libciface.h66 #define strstr(_hh,_nn) VG_(strstr)((_hh),(_nn)) macro
/external/syslinux/gpxe/src/core/
H A Dstring.c293 * strstr - Find the first substring in a %NUL terminated string
297 char * strstr(const char * s1,const char * s2) function
/external/webrtc/webrtc/base/
H A Dstringutils.h93 inline const wchar_t* strstr(const wchar_t* haystack, const wchar_t* needle) { function
/external/compiler-rt/lib/asan/
H A Dasan_win_dll_thunk.cc412 INTERCEPT_LIBRARY_FUNCTION(strstr); variable
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos.h545 #define os_strstr(h, n) strstr((h), (n))
661 #define strstr OS_DO_NOT_USE_strstr macro
/external/wpa_supplicant_8/src/utils/
H A Dos.h545 #define os_strstr(h, n) strstr((h), (n))
661 #define strstr OS_DO_NOT_USE_strstr macro
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h545 #define os_strstr(h, n) strstr((h), (n))
661 #define strstr OS_DO_NOT_USE_strstr macro
/external/valgrind/coregrind/
H A Dm_libcbase.c415 HChar* VG_(strstr) ( const HChar* haystack, const HChar* needle ) function
/external/mksh/src/
H A Dmisc.c2167 if ((cp = strstr(current_wd, wp[0])) == NULL) {
2374 strstr(char *b, const char *l) function
H A Dsh.h616 #define strstr ucstrstr macro
635 #define cstrstr(s,c) ((const char *)strstr((s), (c)))
637 #define vstrstr(b,l) (strstr((b), (l)) != NULL)
/external/python/cpython2/Objects/
H A Dclassobject.c941 static PyObject *strstr; local
943 if (strstr == NULL) {
944 strstr = PyString_InternFromString("__str__");
945 if (strstr == NULL)
948 func = instance_getattr(inst, strstr);

Completed in 441 milliseconds