Home
last modified time | relevance | path

Searched refs:string (Results 1 – 25 of 27) sorted by relevance

12

/bionic/libc/unistd/
Dfnmatch.c146 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/
Dx86.mk13 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/
DAndroid.mk97 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/
Dres_debug.h26 # define Aerror(statp, file, string, error, address) /*empty*/ argument
27 # define Perror(statp, file, string, error) /*empty*/ argument
Dres_send.c1252 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/
Ddirent_test.cpp31 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()
Dstring_test.cpp36 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 …]
Ddlfcn_test.cpp138 std::string executable_name(basename(executable_path)); in TEST()
142 std::string dli_fname(info.dli_fname); in TEST()
Dbenchmark_main.cpp30 typedef std::map<std::string, ::testing::Benchmark*> BenchmarkMap;
/bionic/libc/tools/
Dgenserv.py4 import sys, os, string, re
49 line = string.strip(line)
56 rest = string.strip(m.group(4))
63 rest = string.strip(m.group(2))
Dbionic_utils.py3 import sys, os, commands, string
207 return_type = string.join(return_type[:-1],' ')
234 params = string.join(syscall_params,',')
249 numbers = string.split(number,',')
Dcheck-symbols.py6 import string
Dgenerate-NOTICE.py11 import string
/bionic/libc/arch-mips/
Dmips.mk18 arch-mips/string/memset.S \
19 arch-mips/string/memcpy.S \
20 arch-mips/string/mips_strlen.c \
/bionic/libc/include/
Dfnmatch.h47 extern int fnmatch(const char *pattern, const char *string, int flags);
Dstdlib.h93 extern int system(const char * string);
/bionic/libc/kernel/common/linux/
Dmoduleparam.h56 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/
Dregexec.c205 const char *string,
219 _DIAGASSERT(string != NULL);
228 s = __UNCONST(string);
Dengine.c129 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/
Dprivate.h243 char * icpyalloc P((const char * string));
248 const char * scheck P((const char * string, const char * format));
/bionic/libc/kernel/tools/
Dfind_headers.py34 """ % ( string.join(kernel_archs,",") )
47 wanted_archs = string.split(arg,',')
Dkernel.py7 import sys, cpp, re, os.path, string, time
59 r"^.*<((%s)/[\d\w_\+\.\-/]*)>.*$" % string.join(kernel_dirs,"|")
305 line = string.strip(line)
Dutils.py3 import sys, os, commands, string, commands
/bionic/libstdc++/include/
Dcstring34 * Standard C++ Library wrapper around the C string.h header file.
38 #include <string.h>
/bionic/libc/kernel/arch-mips/asm/
Dasm.h52 #define PRINT(string) argument
55 #define TTABLE(string) .pushsection .text; .word 1f; .popsection .pushsection .data; 1: .a… argument

12