Searched refs:strchr (Results 1 - 25 of 154) sorted by relevance

1234567

/barrelfish-2018-10-04/lib/acpica/source/include/platform/
H A Dacgcc.h140 * Some versions of gcc implement strchr() with a buggy macro. So,
146 #ifdef strchr
147 #undef strchr macro
/barrelfish-2018-10-04/lib/libc/string/
H A Dstrchr.c40 strchr(const char *p, int ch) function
54 __weak_reference(strchr, index);
H A DMakefile.inc15 strcat.c strcasestr.c strchr.c strchrnul.c strcmp.c strcoll.c strcpy.c\
38 strchr.3 strcmp.3 strcoll.3 strcpy.3 strdup.3 strerror.3 \
57 MLINKS+=strchr.3 strrchr.3 \
58 strchr.3 strchrnul.3
/barrelfish-2018-10-04/lib/libc/arm/string/
H A DMakefile.inc5 memmove.S memset.S strcat.c strchr.c strcmp.S strcpy.c strlen.S \
/barrelfish-2018-10-04/lib/libc/stdlib/
H A Dgetopt.c86 if (strchr(ostr, '-') == NULL)
94 if (optopt == ':' || (oli = strchr(ostr, optopt)) == NULL) {
/barrelfish-2018-10-04/lib/libc/tests/gen/
H A Dtest-fnmatch.c60 if (strchr(t->pattern, '\'') != NULL ||
61 strchr(t->string, '\'') != NULL)
70 (t->flags == 0 && strchr(t->pattern, '\\') == NULL)))
H A Dfnmatch_test.c88 if (strchr(t->pattern, '\\') == NULL &&
96 if (strchr(t->pattern, '\\') != NULL &&
97 strchr(t->string, '\\') == NULL &&
115 if ((strchr(t->string, '/') == NULL ||
135 strchr(t->string, '/') == NULL) ||
144 if ((strchr(t->string, '/') == NULL || t->result == 0)
159 if (strchr(t->pattern, '\\') == NULL &&
/barrelfish-2018-10-04/kernel/arch/armv8/
H A Dkernel_multiboot2.c55 if(strchr(modname, ' ')) {
56 endstr = strchr(modname, ' ');
/barrelfish-2018-10-04/lib/libc/inet/
H A Dinet_net_pton.c82 n = strchr(xdigits, ch) - xdigits;
105 n = strchr(digits, ch) - digits;
134 n = strchr(digits, ch) - digits;
203 pch = strchr(digits, ch);
234 pch = strchr(digits, ch);
294 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
295 pch = strchr((xdigits = xdigits_u), ch);
H A Dinet_pton.c91 if ((pch = strchr(digits, ch)) != NULL) {
154 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
155 pch = strchr((xdigits = xdigits_u), ch);
/barrelfish-2018-10-04/lib/posixcompat/
H A Dinet_pton.c90 if ((pch = strchr(digits, ch)) != NULL) {
155 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
156 pch = strchr((xdigits = xdigits_u), ch);
/barrelfish-2018-10-04/lib/skb/
H A Dhelper.c46 p = strchr(p, '(');
/barrelfish-2018-10-04/kernel/arch/arm/
H A Dmultiboot.c50 if(strchr(modname, ' ')) {
51 endstr = strchr(modname, ' ');
/barrelfish-2018-10-04/kernel/arch/x86/
H A Dmultiboot.c47 if(strchr(modname, ' ')) {
48 endstr = strchr(modname, ' ');
/barrelfish-2018-10-04/lib/lua/src/
H A Dldblib.c134 if (strchr(options, 'S')) {
141 if (strchr(options, 'l'))
143 if (strchr(options, 'u')) {
148 if (strchr(options, 'n')) {
152 if (strchr(options, 't'))
154 if (strchr(options, 'L'))
156 if (strchr(options, 'f'))
278 if (strchr(smask, 'c')) mask |= LUA_MASKCALL;
279 if (strchr(smask, 'r')) mask |= LUA_MASKRET;
280 if (strchr(smas
[all...]
/barrelfish-2018-10-04/lib/int_route/server/
H A Dinit.c111 char * n_pos = strchr(pos, ',');
119 char * int_1 = strchr(n_pos, '(');
126 char * int_2 = strchr(int_1, ',');
133 char * after = strchr(int_2, ')');
189 for(char * pos = out; pos-1 != NULL && *pos != 0; pos = strchr(pos,'\n')+1 ) {
201 char * pos_1 = strchr(pos,',');
205 pos = strchr(pos_1 + 1,',');
/barrelfish-2018-10-04/lib/libc/gen/
H A Dfmtcheck.c142 if (strchr("diouxX", *f)) {
184 if (strchr("DOU", *f)) {
190 if (strchr("aAeEfFgG", *f)) {
277 f = strchr(f, '%');
290 while (*f && (strchr("#'0- +", *f)))
H A Dgetttyent.c84 if ((cons = strchr(buf, '/')) == NULL)
114 while (!strchr(p, '\n') && !feof(tf)) {
186 if ((p = strchr(p, '\n')))
234 return ((p = strchr(p, '=')) ? ++p : NULL);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/ocsp/
H A Docsp_lib.c182 p = strchr(buf, ':');
211 p = strchr(p, '/');
225 if ((p = strchr(host, ':')))
/barrelfish-2018-10-04/kernel/
H A Dstring.c138 strchr(const char *s, int c) function
201 while (('\0' != *l) && (NULL != strchr(set, *l)))
213 while (('\0' != *l) && (NULL == strchr(set, *l)))
/barrelfish-2018-10-04/lib/getopt/
H A Dgetopt.c188 for(const char *p = strchr(cmdline, '='); p != NULL;
189 p = strchr(p + 1, '=')) {
/barrelfish-2018-10-04/lib/libc/stdio/
H A Dmktemp.c134 if (trv < path || NULL != strchr(suffp, '/')) {
190 pad = strchr(padchar, *trv);
/barrelfish-2018-10-04/usr/monitor/arch/armv7/
H A Dboot.c36 int chan_id = strtol(strchr(argv[2], '=') + 1, NULL, 10);
40 int arch_id = strtol(strchr(argv[3], '=') + 1, NULL, 10);
/barrelfish-2018-10-04/usr/monitor/arch/armv8/
H A Dboot.c36 int chan_id = strtol(strchr(argv[2], '=') + 1, NULL, 10);
40 int arch_id = strtol(strchr(argv[3], '=') + 1, NULL, 10);
/barrelfish-2018-10-04/usr/monitor/arch/x86/
H A Dboot.c42 int chan_id = strtol(strchr(argv[2], '=') + 1, NULL, 10);
46 int arch_id = strtol(strchr(argv[3], '=') + 1, NULL, 10);

Completed in 228 milliseconds

1234567