/bionic/libc/tools/ |
H A D | genserv.py | 4 import sys, os, string, re namespace 49 line = string.strip(line) 56 rest = string.strip(m.group(4)) 63 rest = string.strip(m.group(2))
|
H A D | checksyscalls.py | 8 import sys, re, string, os, commands namespace
|
H A D | bionic_utils.py | 3 import sys, os, commands, string namespace 207 return_type = string.join(return_type[:-1],' ') 234 params = string.join(syscall_params,',') 248 numbers = string.split(number,',')
|
/bionic/libc/unistd/ |
H A D | fnmatch.c | 42 #include <string.h> 54 fnmatch(const char *pattern, const char *string, int flags) argument 60 for (stringstart = string;;) 63 if ((flags & FNM_LEADING_DIR) && *string == '/') 65 return (*string == EOS ? 0 : FNM_NOMATCH); 67 if (*string == EOS) 69 if (*string == '/' && (flags & FNM_PATHNAME)) 71 if (*string == '.' && (flags & FNM_PERIOD) && 72 (string == stringstart || 73 ((flags & FNM_PATHNAME) && *(string [all...] |
/bionic/libc/kernel/common/linux/ |
H A D | moduleparam.h | 50 char *string; member in struct:kparam_string 71 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name, param_set_copystring, param_get_string, &__param_string_##name, perm); __MODULE_PARM_TYPE(name, "string")
|
/bionic/libc/kernel/tools/ |
H A D | kernel.py | 7 import sys, cpp, re, os.path, string, time namespace 59 r"^.*<((%s)/[\d\w_\+\.\-/]*)>.*$" % string.join(kernel_dirs,"|") 305 line = string.strip(line)
|
H A D | utils.py | 3 import sys, os, commands, string, commands namespace 130 return_type = string.join(return_type[:-1],' ') 144 params = string.join(syscall_params,',') 157 numbers = string.split(number,',') 384 files = string.join(sorted(adds)," ") 393 files = string.join(sorted(edits)," ") 402 files = string.join(sorted(deletes)," ")
|
H A D | cpp.py | 3 import sys, re, string namespace 59 tokSTRING = "<string>" 64 an 'id' and a 'value'. the id is a string that identifies 65 the token's class, while the value is the string of the 98 return "(string '%s')" % self.value 620 # op is an "operator" string 711 s = self.arg # string value 715 return string.atoi(s) 959 where "op" is a string describing the operation""" 1034 val = string [all...] |
/bionic/libc/regex/ |
H A D | regexec.c | 47 #include <string.h> 139 regexec(const regex_t *preg, const char *string, size_t nmatch, argument 157 return(smatcher(g, (char *)string, nmatch, pmatch, eflags)); 159 return(lmatcher(g, (char *)string, nmatch, pmatch, eflags));
|
H A D | engine.c | 76 char *beginp; /* start of string -- virtual NUL precedes */ 77 char *endp; /* end of string -- virtual NUL here */ 128 matcher(struct re_guts *g, char *string, size_t nmatch, regmatch_t pmatch[], argument 145 start = string + pmatch[0].rm_so; 146 stop = string + pmatch[0].rm_eo; 148 start = string; 169 m->offp = string; 296 char *sp; /* start of string matched by it */ 297 char *stp; /* string matched by it cannot pass here */ 298 char *rest; /* start of rest of string */ [all...] |
/bionic/libc/netbsd/resolv/ |
H A D | res_send.c | 112 #include <string.h> 1226 Aerror(const res_state statp, FILE *file, const char *string, int error, argument 1244 string, hbuf, sbuf, strerror(error)); 1250 Perror(const res_state statp, FILE *file, const char *string, int error) { argument 1255 string, strerror(error));
|