Searched refs:find (Results 1 – 10 of 10) sorted by relevance
/bionic/libc/string/ |
D | strstr.c | 40 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()
|
D | strcasestr.c | 43 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/ |
D | wcsstr.c | 47 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/ |
D | sobegin.S | 35 # INIT information when it find the function whose name is '_init'.
|
/bionic/libc/tools/ |
D | bionic_utils.py | 190 pos_lparen = line.find('(') 210 pos_colon = syscall_func.find(':') 220 pos_colon2 = syscall_func.find(':', pos_colon + 1)
|
D | gensyscalls.py | 257 if param.find("*") >= 0:
|
/bionic/libc/ |
D | Jamfile | 133 # 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/ |
D | utils.py | 113 pos_lparen = line.find('(') 132 pos_colon = syscall_func.find(':')
|
/bionic/linker/ |
D | README.TXT | 35 - 'soslim' is used to find symbols in an executable ELF file
|
/bionic/libc/kernel/ |
D | README.TXT | 24 'find_headers.py' to find these automatically).
|