Home
last modified time | relevance | path

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

/bionic/libc/unistd/
Dfnmatch.c54 fnmatch(const char *pattern, const char *string, int flags) in fnmatch() argument
60 for (stringstart = string;;) in fnmatch()
63 if ((flags & FNM_LEADING_DIR) && *string == '/') in fnmatch()
65 return (*string == EOS ? 0 : FNM_NOMATCH); in fnmatch()
67 if (*string == EOS) in fnmatch()
69 if (*string == '/' && (flags & FNM_PATHNAME)) in fnmatch()
71 if (*string == '.' && (flags & FNM_PERIOD) && in fnmatch()
72 (string == stringstart || in fnmatch()
73 ((flags & FNM_PATHNAME) && *(string - 1) == '/'))) in fnmatch()
75 ++string; in fnmatch()
[all …]
/bionic/libc/
DAndroid.mk179 string/index.c \
180 string/memccpy.c \
181 string/memchr.c \
182 string/memmem.c \
183 string/memrchr.c \
184 string/memswap.c \
185 string/strcasecmp.c \
186 string/strcasestr.c \
187 string/strcat.c \
188 string/strchr.c \
[all …]
DJamfile191 BIONIC_SRC_SUBDIRS = string ;
366 INCLUDES = include stdio string stdlib .
393 ProcessDirs stdlib stdio unistd string tzcode inet ;
/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.c1084 Aerror(const res_state statp, FILE *file, const char *string, int error, in Aerror() argument
1102 string, hbuf, sbuf, strerror(error)); in Aerror()
1108 Perror(const res_state statp, FILE *file, const char *string, int error) { in Perror() argument
1113 string, strerror(error)); in Perror()
/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
161 return_type = string.join(return_type[:-1],' ')
188 params = string.join(syscall_params,',')
202 numbers = string.split(number,',')
Dchecksyscalls.py8 import sys, re, string, os, commands
/bionic/libc/include/
Dfnmatch.h47 extern int fnmatch(const char *pattern, const char *string, int flags);
Dstdlib.h96 extern int system(const char * string);
/bionic/libc/kernel/tools/
Dutils.py3 import sys, os, commands, string, commands
130 return_type = string.join(return_type[:-1],' ')
144 params = string.join(syscall_params,',')
157 numbers = string.split(number,',')
375 files = string.join(sorted(adds)," ")
384 files = string.join(sorted(edits)," ")
393 files = string.join(sorted(deletes)," ")
Dfind_headers.py40 """ % ( wanted_include, wanted_config, string.join(kernel_archs,",") )
53 wanted_archs = string.split(arg,',')
Dkernel.py7 import sys, cpp, re, os.path, string, time
59 re.compile(r"^.*<((%s)/[\d\w_\+\.\-/]*)>.*$" % string.join(kernel_dirs,"|") )
302 line = string.strip(line)
Dcpp.py3 import sys, re, string
715 return string.atoi(s)
1034 val = string.atoi(v)
1607 return string.join([ str(x) for x in tok[:i+1] ],"")
2147 lines = string.split(text, '\n')
/bionic/libc/kernel/common/linux/
Dmoduleparam.h50 char *string; member
71 …efine module_param_string(name, string, len, perm) static struct kparam_string __param_string_##… argument
/bionic/libc/regex/
Dregexec.c139 regexec(const regex_t *preg, const char *string, size_t nmatch, in regexec() argument
157 return(smatcher(g, (char *)string, nmatch, pmatch, eflags)); in regexec()
159 return(lmatcher(g, (char *)string, nmatch, pmatch, eflags)); in regexec()
Dengine.c128 matcher(struct re_guts *g, char *string, size_t nmatch, regmatch_t pmatch[], in matcher() argument
145 start = string + pmatch[0].rm_so; in matcher()
146 stop = string + pmatch[0].rm_eo; in matcher()
148 start = string; in matcher()
169 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/libstdc++/include/
Dcstring34 * Standard C++ Library wrapper around the C string.h header file.
38 #include <string.h>
/bionic/libc/docs/
DOVERVIEW.TXT225 simple size-limited string that can be associated to a size-limited
226 string value.