/bionic/libc/unistd/ |
D | fnmatch.c | 54 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/ |
D | Android.mk | 179 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 …]
|
D | Jamfile | 191 BIONIC_SRC_SUBDIRS = string ; 366 INCLUDES = include stdio string stdlib . 393 ProcessDirs stdlib stdio unistd string tzcode inet ;
|
/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 | 1084 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/ |
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 161 return_type = string.join(return_type[:-1],' ') 188 params = string.join(syscall_params,',') 202 numbers = string.split(number,',')
|
D | checksyscalls.py | 8 import sys, re, string, os, commands
|
/bionic/libc/include/ |
D | fnmatch.h | 47 extern int fnmatch(const char *pattern, const char *string, int flags);
|
D | stdlib.h | 96 extern int system(const char * string);
|
/bionic/libc/kernel/tools/ |
D | utils.py | 3 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)," ")
|
D | find_headers.py | 40 """ % ( wanted_include, wanted_config, string.join(kernel_archs,",") ) 53 wanted_archs = string.split(arg,',')
|
D | kernel.py | 7 import sys, cpp, re, os.path, string, time 59 re.compile(r"^.*<((%s)/[\d\w_\+\.\-/]*)>.*$" % string.join(kernel_dirs,"|") ) 302 line = string.strip(line)
|
D | cpp.py | 3 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/ |
D | moduleparam.h | 50 char *string; member 71 …efine module_param_string(name, string, len, perm) static struct kparam_string __param_string_##… argument
|
/bionic/libc/regex/ |
D | regexec.c | 139 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()
|
D | engine.c | 128 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/ |
D | private.h | 243 char * icpyalloc P((const char * string)); 248 const char * scheck P((const char * string, const char * format));
|
/bionic/libstdc++/include/ |
D | cstring | 34 * Standard C++ Library wrapper around the C string.h header file. 38 #include <string.h>
|
/bionic/libc/docs/ |
D | OVERVIEW.TXT | 225 simple size-limited string that can be associated to a size-limited 226 string value.
|