Home
last modified time | relevance | path

Searched refs:find (Results 1 – 10 of 10) sorted by relevance

/bionic/libc/string/
Dstrstr.c40 strstr(const char *s, const char *find) in strstr() argument
45 if ((c = *find++) != 0) { in strstr()
46 len = strlen(find); in strstr()
52 } while (strncmp(s, find, len) != 0); in strstr()
Dstrcasestr.c43 strcasestr(const char *s, const char *find) in strcasestr() argument
48 if ((c = *find++) != 0) { in strcasestr()
50 len = strlen(find); in strcasestr()
56 } while (strncasecmp(s, find, len) != 0); in strcasestr()
/bionic/libc/wchar/
Dwcsstr.c47 wcsstr(const wchar_t * __restrict s, const wchar_t * __restrict find) in wcsstr() argument
52 if ((c = *find++) != L'\0') { in wcsstr()
53 len = wcslen(find); in wcsstr()
59 } while (wcsncmp(s, find, len) != 0); in wcsstr()
/bionic/libdl/arch-sh/
Dsobegin.S35 # INIT information when it find the function whose name is '_init'.
/bionic/libc/tools/
Dbionic_utils.py190 pos_lparen = line.find('(')
210 pos_colon = syscall_func.find(':')
220 pos_colon2 = syscall_func.find(':', pos_colon + 1)
Dgensyscalls.py257 if param.find("*") >= 0:
/bionic/libc/
DJamfile133 # find the prebuilt directory
199 # find sources in a given list of subdirectories
423 # set SEARCH so Jam can find the headers, but then say we don't
424 # care if we can't actually find the headers (they may have been
/bionic/libc/kernel/tools/
Dutils.py113 pos_lparen = line.find('(')
132 pos_colon = syscall_func.find(':')
/bionic/linker/
DREADME.TXT35 - 'soslim' is used to find symbols in an executable ELF file
/bionic/libc/kernel/
DREADME.TXT24 'find_headers.py' to find these automatically).