/bionic/libc/unistd/ |
D | fnmatch.c | 146 static int fnmatch_ch(const char **pattern, const char **string, int flags) in fnmatch_ch() argument 174 ++*string; in fnmatch_ch() 191 if (classmatch(*pattern, **string, nocase, pattern) in fnmatch_ch() 215 if ((**string >= *startch) && (**string <= **pattern)) in fnmatch_ch() 217 else if (nocase && (isupper(**string) || isupper(*startch) in fnmatch_ch() 219 && (tolower(**string) >= tolower(*startch)) in fnmatch_ch() 220 && (tolower(**string) <= tolower(**pattern))) in fnmatch_ch() 228 if ((**string == **pattern)) in fnmatch_ch() 230 else if (nocase && (isupper(**string) || isupper(**pattern)) in fnmatch_ch() 231 && (tolower(**string) == tolower(**pattern))) in fnmatch_ch() [all …]
|
/bionic/libc/arch-x86/ |
D | x86.mk | 13 arch-x86/string/bcopy_wrapper.S \ 14 arch-x86/string/bzero_wrapper.S \ 15 arch-x86/string/ffs.S \ 16 arch-x86/string/memcmp_wrapper.S \ 17 arch-x86/string/memcpy_wrapper.S \ 18 arch-x86/string/memmove_wrapper.S \ 19 arch-x86/string/memset_wrapper.S \ 20 arch-x86/string/strcmp_wrapper.S \ 21 arch-x86/string/strlen_wrapper.S \ 22 arch-x86/string/strncmp_wrapper.S \
|
/bionic/libc/ |
D | Android.mk | 97 string/index.c \ 98 string/strcasecmp.c \ 99 string/strcat.c \ 100 string/strchr.c \ 101 string/strcspn.c \ 102 string/strdup.c \ 103 string/strlcat.c \ 104 string/strlcpy.c \ 105 string/strncat.c \ 106 string/strncpy.c \ [all …]
|
/bionic/libc/netbsd/resolv/ |
D | res_debug.h | 26 # define Aerror(statp, file, string, error, address) /*empty*/ argument 27 # define Perror(statp, file, string, error) /*empty*/ argument
|
D | res_send.c | 1252 Aerror(const res_state statp, FILE *file, const char *string, int error, in Aerror() argument 1270 string, hbuf, sbuf, strerror(error)); in Aerror() 1276 Perror(const res_state statp, FILE *file, const char *string, int error) { in Perror() argument 1281 string, strerror(error)); in Perror()
|
/bionic/tests/ |
D | dirent_test.cpp | 31 static void CheckProcSelf(std::set<std::string>& names) { in CheckProcSelf() 47 std::set<std::string> name_set; in TEST() 48 std::vector<std::string> unsorted_name_list; in TEST() 60 std::vector<std::string> sorted_name_list(unsorted_name_list); in TEST() 122 std::set<std::string> name_set; in TEST() 139 std::set<std::string> name_set; in TEST() 159 std::vector<std::string> pass1; in TEST() 169 std::vector<std::string> pass2; in TEST()
|
D | string_test.cpp | 36 TEST(string, strerror) { in TEST() argument 53 TEST(string, strerror_concurrent) { in TEST() argument 69 TEST(string, strerror_r) { in TEST() argument 90 TEST(string, strsignal) { in TEST() argument 112 TEST(string, strsignal_concurrent) { in TEST() argument 190 TEST(string, strcat) { in TEST() argument 212 TEST(string, strchr) { in TEST() argument 245 TEST(string, strcmp) { in TEST() argument 282 TEST(string, strcpy) { in TEST() argument 343 TEST(string, strlcat) { in TEST() argument [all …]
|
D | dlfcn_test.cpp | 138 std::string executable_name(basename(executable_path)); in TEST() 142 std::string dli_fname(info.dli_fname); in TEST()
|
D | benchmark_main.cpp | 30 typedef std::map<std::string, ::testing::Benchmark*> BenchmarkMap;
|
/bionic/libc/tools/ |
D | genserv.py | 4 import sys, os, string, re 49 line = string.strip(line) 56 rest = string.strip(m.group(4)) 63 rest = string.strip(m.group(2))
|
D | bionic_utils.py | 3 import sys, os, commands, string 207 return_type = string.join(return_type[:-1],' ') 234 params = string.join(syscall_params,',') 249 numbers = string.split(number,',')
|
D | check-symbols.py | 6 import string
|
D | generate-NOTICE.py | 11 import string
|
/bionic/libc/arch-mips/ |
D | mips.mk | 18 arch-mips/string/memset.S \ 19 arch-mips/string/memcpy.S \ 20 arch-mips/string/mips_strlen.c \
|
/bionic/libc/include/ |
D | fnmatch.h | 47 extern int fnmatch(const char *pattern, const char *string, int flags);
|
D | stdlib.h | 93 extern int system(const char * string);
|
/bionic/libc/kernel/common/linux/ |
D | moduleparam.h | 56 char *string; member 75 …efine module_param_string(name, string, len, perm) static struct kparam_string __param_string_##… argument
|
/bionic/libc/upstream-netbsd/libc/regex/ |
D | regexec.c | 205 const char *string, 219 _DIAGASSERT(string != NULL); 228 s = __UNCONST(string);
|
D | engine.c | 129 static int matcher(struct re_guts *g, const char *string, size_t nmatch, regmatch_t pmatch[], int e… 178 const char *string, in matcher() argument 195 _DIAGASSERT(string != NULL); in matcher() 203 start = string + (size_t)pmatch[0].rm_so; in matcher() 204 stop = string + (size_t)pmatch[0].rm_eo; in matcher() 206 start = string; in matcher() 227 m->offp = string; in matcher()
|
/bionic/libc/tzcode/ |
D | private.h | 243 char * icpyalloc P((const char * string)); 248 const char * scheck P((const char * string, const char * format));
|
/bionic/libc/kernel/tools/ |
D | find_headers.py | 34 """ % ( string.join(kernel_archs,",") ) 47 wanted_archs = string.split(arg,',')
|
D | kernel.py | 7 import sys, cpp, re, os.path, string, time 59 r"^.*<((%s)/[\d\w_\+\.\-/]*)>.*$" % string.join(kernel_dirs,"|") 305 line = string.strip(line)
|
D | utils.py | 3 import sys, os, commands, string, commands
|
/bionic/libstdc++/include/ |
D | cstring | 34 * Standard C++ Library wrapper around the C string.h header file. 38 #include <string.h>
|
/bionic/libc/kernel/arch-mips/asm/ |
D | asm.h | 52 #define PRINT(string) argument 55 #define TTABLE(string) .pushsection .text; .word 1f; .popsection .pushsection .data; 1: .a… argument
|