| /f-stack/dpdk/lib/librte_telemetry/ |
| H A D | telemetry_legacy.c | 89 if (!strchr(params, ':')) { in register_client() 94 strlcpy(data, strchr(params, ':'), sizeof(data)); in register_client() 96 if (!strchr(data, '\"')) { in register_client() 100 *strchr(data, '\"') = 0; in register_client() 194 if (!(strchr(valid_sep, action_sep) && strchr(valid_sep, in parse_client_request() 199 if (!strchr(data_ptr, '{')) in parse_client_request() 202 if (!strchr(data_ptr, '}')) in parse_client_request() 204 char *data_end = strchr(data_ptr, '}'); in parse_client_request() 209 if (!strchr(valid_sep, data_sep)) in parse_client_request()
|
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | ldblib.c | 121 if (strchr(options, 'S')) { in db_getinfo() 128 if (strchr(options, 'l')) in db_getinfo() 130 if (strchr(options, 'u')) in db_getinfo() 132 if (strchr(options, 'n')) { in db_getinfo() 136 if (strchr(options, 'L')) in db_getinfo() 138 if (strchr(options, 'f')) in db_getinfo() 227 if (strchr(smask, 'c')) mask |= LUA_MASKCALL; in makemask() 228 if (strchr(smask, 'r')) mask |= LUA_MASKRET; in makemask() 229 if (strchr(smask, 'l')) mask |= LUA_MASKLINE; in makemask()
|
| /f-stack/freebsd/contrib/dev/acpica/include/platform/ |
| H A D | acgccex.h | 162 #ifdef strchr 163 #undef strchr
|
| /f-stack/tools/libxo/xo/ |
| H A D | xo.c | 123 } else if (strchr("diouxXDOUeEfFgGaAcCsSp", *cp) != NULL) in formatter() 143 if (strchr("diD", fc) != NULL) { in formatter() 152 } else if (strchr("ouxXOUp", fc) != NULL) { in formatter() 161 } else if (strchr("eEfFgGaA", fc) != NULL) { in formatter() 468 np = strchr(cp, '/'); in main() 485 np = strchr(cp, '/'); in main() 497 np = strchr(cp, '/'); in main()
|
| /f-stack/freebsd/kern/ |
| H A D | subr_hints.c | 69 eq = strchr(cp, '='); in static_hints_to_env() 241 p = strchr(cp, 'h'); in res_find() 280 s = strchr(s, '.') + 1; /* start of device */ in res_find() 283 s = strchr(s, '.') + 1; /* start of unit */ in res_find() 288 s = strchr(s, '.') + 1; /* start of resname */ in res_find() 291 s = strchr(s, '=') + 1; /* start of value */ in res_find()
|
| H A D | subr_boot.c | 141 opts = strchr(kargs, '-'); in boot_parse_arg() 144 sw = strchr(howto_switches, *opts); in boot_parse_arg() 149 opts = strchr(opts, '-'); in boot_parse_arg()
|
| /f-stack/freebsd/libkern/ |
| H A D | inet_pton.c | 87 if ((pch = strchr(digits, ch)) != NULL) { in inet_pton4() 152 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL) in inet_pton6() 153 pch = strchr((xdigits = xdigits_u), ch); in inet_pton6()
|
| H A D | fnmatch.c | 94 strchr(string, '/') == NULL ? in fnmatch() 99 if ((string = strchr(string, '/')) == NULL) in fnmatch()
|
| H A D | strchr.c | 39 strchr(const char *cp, int ch) in strchr() function
|
| /f-stack/lib/ |
| H A D | ff_ini_parser.c | 51 while (*s && (!chars || !strchr(chars, *s)) && in find_chars_or_comment() 52 !(was_space && strchr(INI_INLINE_COMMENT_PREFIXES, *s))) { in find_chars_or_comment() 57 while (*s && (!chars || !strchr(chars, *s))) { in find_chars_or_comment()
|
| /f-stack/tools/compat/ |
| H A D | getopt.c | 92 if (strchr(ostr, '-') == NULL) in getopt() 100 if (optopt == ':' || (oli = strchr(ostr, optopt)) == NULL) { in getopt()
|
| H A D | fnmatch.c | 117 strchr(string, '/') == NULL ? in fnmatch() 122 if ((string = strchr(string, '/')) == NULL) in fnmatch()
|
| /f-stack/freebsd/contrib/openzfs/lib/libuutil/ |
| H A D | uu_ident.c | 81 sp = strchr(b, ','); in is_valid_component() 109 while ((p = strchr(name, '/')) != NULL) { in uu_check_name()
|
| /f-stack/tools/ifconfig/ |
| H A D | af_link.c | 81 while ((format_char = strchr(ether_format, ':')) != in link_status() 128 for (format_char = strchr(ether_format, ':'); in link_status() 130 format_char = strchr(ether_format, ':')) in link_status()
|
| /f-stack/tools/libxo/libxo/ |
| H A D | xo_encoder.c | 294 const char *col_opts = strchr(name, ':'); in xo_encoder_init() 295 const char *plus_opts = strchr(name, '+'); in xo_encoder_init() 322 if (strchr(name, '/') != NULL || strchr(name, ':') != NULL) { in xo_encoder_init()
|
| /f-stack/freebsd/contrib/openzfs/module/zcommon/ |
| H A D | zfs_namecheck.c | 304 if (ret == 0 && strchr(path, '#') != NULL) { in dataset_namecheck() 323 if (ret == 0 && strchr(path, '#') == NULL) { in bookmark_namecheck() 342 if (ret == 0 && strchr(path, '@') == NULL) { in snapshot_namecheck()
|
| H A D | zfs_comutil.c | 246 if (strchr(name, '$') != NULL) in zfs_dataset_name_hidden() 248 if (strchr(name, '%') != NULL) in zfs_dataset_name_hidden()
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/cmd/badsend/ |
| H A D | badsend.c | 68 p = strchr(fromfull, '@'); in main() 73 p = strchr(tofull, '@'); in main()
|
| /f-stack/tools/ipfw/ |
| H A D | main.c | 140 copy = !strchr("," WHITESP, arg[i]); in ipfw_main() 142 copy = !strchr(WHITESP, arg[i]); in ipfw_main() 159 if (strchr(WHITESP, arg[i]) != NULL) in ipfw_main() 180 if (strchr(WHITESP, arg[i]) != NULL || i == l-1) { in ipfw_main() 258 s = strchr(av[2], '='); in ipfw_main()
|
| H A D | nat.c | 244 sep = strchr (str, '-'); in StrToPortRange() 290 ptr = strchr (str, ':'); in StrToAddrAndPortRange() 340 while ((sep = strchr(sep, ',')) != NULL) { in estimate_redir_addr() 367 if (strchr(**av, ',') != NULL) { in setup_redir_addr() 402 while ((sep = strchr(sep, ',')) != NULL) { in estimate_redir_port() 442 if (strchr(**av, ',') != NULL) { in setup_redir_port() 454 if (strchr(**av, ':')) in setup_redir_port() 475 if (strchr(**av, ':') != NULL) { in setup_redir_port() 503 if (strchr(**av, ':') != NULL) { in setup_redir_port() 549 if (strchr (sep, ':')) { in setup_redir_port()
|
| /f-stack/dpdk/lib/librte_eal/windows/ |
| H A D | getopt.c | 132 has_equal = strchr(current_argv, '='); in parse_long_options() 296 (place[1] == '\0' && strchr(options, '-') == NULL)) { in getopt_internal() 361 else if (*place != ':' && strchr(options, *place) != NULL) in getopt_internal() 373 oli = strchr(options, optchar); in getopt_internal()
|
| H A D | fnmatch.c | 66 strchr(string, '/') == NULL ? in fnmatch() 71 string = strchr(string, '/'); in fnmatch()
|
| /f-stack/freebsd/contrib/libsodium/src/libsodium/sodium/ |
| H A D | codecs.c | 63 if (ignore != NULL && state == 0U && strchr(ignore, c) != NULL) { in sodium_hex2bin() 256 } else if (ignore == NULL || strchr(ignore, c) == NULL) { in _sodium_base642bin_skip_padding() 290 if (ignore != NULL && strchr(ignore, c) != NULL) { in sodium_base642bin() 319 while (b64_pos < b64_len && strchr(ignore, b64[b64_pos]) != NULL) { in sodium_base642bin()
|
| /f-stack/tools/libxo/encoder/csv/ |
| H A D | enc_csv.c | 308 np = strchr(cp, '"'); in csv_escape() 584 np = strchr(cp, '.'); in csv_record_leafs() 619 np = strchr(cp, '/'); in csv_record_path() 637 np = strchr(cp, '/'); in csv_record_path() 674 np = strchr(cp, opts_char); in csv_options() 678 vp = strchr(cp, '='); in csv_options()
|
| /f-stack/dpdk/examples/ipsec-secgw/ |
| H A D | parser.c | 52 pch = strchr(token, '/'); in parse_ipv4_addr() 82 pch = strchr(token, '/'); in parse_ipv6_addr() 473 pos = strchr(oneline, '#'); in parse_cfg_file() 478 pos = strchr(oneline, 92); in parse_cfg_file()
|