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

12345678

/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/platform/
H A Dacgccex.h156 * Some versions of gcc implement strchr() with a buggy macro. So,
162 #ifdef strchr
163 #undef strchr macro
/haiku/src/system/libroot/posix/string/
H A Dstrchr.c13 strchr(const char* s, int c) function
25 return strchr(s, c);
H A Dstrstr.c17 for (; (s1 = strchr(s1, *s2)) != NULL; s1++) {
/haiku/src/tests/system/kernel/
H A Dselect_check.cpp27 if (strchr(config[fd], 'r'))
29 if (strchr(config[fd], 'w'))
31 if (strchr(config[fd], 'e'))
/haiku/src/libs/bsd/
H A Dstring.cpp18 while (*end != '\0' && strchr(delimiters, *end) == NULL)
/haiku/src/add-ons/kernel/file_systems/websearchfs/
H A Dstring_utils.c36 if (strchr(allowed, *p))
115 strchr(hex, tolower(p[3])) &&
116 strchr(hex, tolower(p[4]))) {
118 char c = (strchr(hex, tolower(p[3])) - hex) << 4 |
119 (strchr(hex, tolower(p[4])) - hex);
126 if (!strchr(buf, ';')) {
130 *(strchr(buf, ';')) = '\0';
/haiku/src/tools/
H A Dcreate_image.cpp64 if (strchr(optarg, 'G') || strchr(optarg, 'g'))
66 else if (strchr(optarg, 'M') || strchr(optarg, 'm'))
68 else if (strchr(optarg, 'K') || strchr(optarg, 'k'))
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A Dbtrfs_disk_system.cpp60 || strchr(name, '/') != NULL
61 || strchr(name, '\\') != NULL) {
/haiku/src/tools/vmdkimage/
H A Dvmdkimage.cpp140 if (strchr(kHex, uuid[i]) == NULL)
190 if (strchr(optarg, 'G') || strchr(optarg, 'g'))
192 else if (strchr(optarg, 'M') || strchr(optarg, 'm'))
194 else if (strchr(optarg, 'K') || strchr(optarg, 'k'))
200 if (strchr(optarg, 'G') || strchr(optarg, 'g'))
202 else if (strchr(optar
[all...]
/haiku/src/bin/
H A Dprintenv.c60 char *p = strchr(s, '=');
H A Dlogger.cpp84 char *end = strchr(facility, '.');
99 char *priority = strchr(option, '.');
/haiku/src/system/libroot/posix/musl/misc/
H A Da64l.c13 const char *d = strchr(digits, *s);
H A Dgetsubopt.c10 *opt = strchr(s, ',');
/haiku/src/libs/libtelnet/
H A Dread_password.c114 if ((ptr = strchr(s, '\n')))
123 if ((ptr = strchr(key_string, '\n')))
/haiku/src/add-ons/kernel/file_systems/packagefs/resolvables/
H A DDependency.cpp45 if (strchr(name, ':') != NULL) {
52 while (char* colon = strchr(remainder, ':')) {
/haiku/src/servers/syslog_daemon/
H A Dsyslog_output.cpp164 const char *newLine = strchr(message.message + pos, '\n');
221 if (strchr(param, 'k') || strchr(param, 'K'))
223 else if (strchr(param, 'm') || strchr(param, 'M'))
/haiku/src/system/libroot/posix/malloc_debug/
H A Dmalloc_debug_api.cpp154 if (mode == NULL || strchr(mode, 'g') == NULL)
164 if (strchr(mode, 'p') != NULL)
166 if (strchr(mode, 'r') != NULL)
168 if (strchr(mode, 'e') != NULL)
172 const char *argument = strchr(mode, 'a');
179 argument = strchr(mode, 's');
186 argument = strchr(mode, 'w');
/haiku/src/apps/poorman/libhttpd/
H A Dmatch.c44 or = strchr( pattern, '|' );
/haiku/src/tools/fs_shell/
H A Dfs_shell_command.cpp38 if (strchr(" \"'\\", *arg))
/haiku/src/system/boot/platform/bios_ia32/
H A Dmultiboot.cpp50 cmdline = strchr(cmdline, ' ');
/haiku/src/add-ons/kernel/file_systems/bfs/
H A Dbfs_disk_system.cpp51 || strchr(name, '/') != NULL) {
/haiku/src/system/libnetwork/netresolv/inet/
H A Dinet_net_pton.c95 n = strchr(xdigits, ch) - xdigits;
118 n = strchr(digits, ch) - digits;
147 n = strchr(digits, ch) - digits;
212 pch = strchr(digits, ch);
244 pch = strchr(digits, ch);
305 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
306 pch = strchr((xdigits = xdigits_u), ch);
/haiku/src/system/boot/platform/pxe_ia32/
H A Ddevices.cpp55 if (char* fileNameEnd = strchr(rootPath, ';')) {
153 if (char* fileNameEnd = strchr(rootPath, ';'))
/haiku/src/libs/iconv/
H A Dlocalcharset.c320 const char *dot = strchr (locale, '.');
328 modifier = strchr (dot, '@');
403 const char *dot = strchr (locale, '.');
411 modifier = strchr (dot, '@');
/haiku/src/libs/util/
H A Dtrimdomain.c66 (s = strchr(domain, '.')) != NULL)

Completed in 446 milliseconds

12345678